/*  Common  */

/* font */
@font-face {
  font-family: "LetterGothicStdBold";
  src: url("fonts/LetterGothicStdBold.ttf") format("truetype");
}

body {
  background-color: #000;
  text-align: center;
  color: #fff;
  font-family: "LetterGothicStdBold";
  font-size: 25px;
  margin: 0;
}
input {
  font-family: "LetterGothicStdBold";
}
a {
  color: #fff;
}

/*  Index  */ 
.logo {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 10;
  background-color: black;
}
.logo img {
  width: auto;
  height: 125px;
}
.catalog {
  margin: 50px 10px;
}
.catalog a {
  border: solid 3px #fff;
  width: 86%;
  display: inline-block;
  padding: 15px 6px;
  margin: 20px 0;
  text-decoration: none;
}
.catalog .subtitle {
  display: block;
  font-size: 20px;
}
.right-link {
  margin: 40px 0 80px 47%;
}
.ambiance {
  margin-top: 125px;
}
.ambiance img {
  width: 100%;
}
/*  Responsive  */ 
@media screen and (min-width: 700px) {
  .logo img {
    height: 200px;
  }
  .catalog a {
    width: 439px;
    margin: 20px 40px;
  }
  .ambiance {
    margin-top: 200px;
  }
} 

/*  Contact  */ 
#form {
  width: 350px;
  display: inline-block;
  margin-top: 140px;
}
label {
  text-align: left;
  display: block;
}
input {
  width: 100%;
  height: 25px;
  margin-top: 5px;
  margin-bottom: 20px;
  border: 1px solid #fff;
  border-radius: 3px;
  padding: 5px;
  background-color: #000;
  color: #fff;
}
input[type=submit] {
  border:2px solid #fff;
  font-Weight: bold;
  padding: 10px 40px;
  width: auto;
  height: auto;
}
textarea {
  width: 100%;
  height: 100px;
  margin-top: 5px;
  border: 1px solid #fff;
  border-radius: 3px;
  padding: 5px;
  resize: none;
  background-color: #000;
  color: #fff;
}
/*  Responsive  */ 
@media screen and (min-width: 700px) {
  #form {
    margin-top: 210px;
  }
}
