/* Styles de base */

@font-face {
  font-family: 'Raleway';
  src: url('font/raleway.regular.ttf') format('truetype');
}

body {
  font-family: 'Raleway', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  margin: 0;
  padding: 0;
  background: url('background.jpg') ;
  background-size: cover;
}

a {
  text-decoration: none;
  color: #000;
}

a:hover {
  color: #666;
}

/* Header */

header {
  background-color: #000;

}

#menu_table{
  width: 100% ;
  margin: auto;
  padding-left: 40px;
  padding-right: 40px;
  padding-top: 25px;
  padding-bottom: 25px;
}

.menu {
  float: right;
}

.menu ul {
  list-style-type: none;
  margin: 0;
  padding: 25px 40px;
}

.menu li {
  float: left;
  font-size: 18px;
}

.menu li a {
  display: block;
  padding: 8px 16px;
  color: #fff;
}



/* Corps du site */

.corps {
  text-align: center;

}

.corps h2 {
  font-size: 60px;
  color: #fff;
  font-family: 'Raleway';
  font-weight: normal;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

#contact_table {
  margin-bottom: 80px;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

#boutton {
  width: 150px;
  padding: 5px;
  border: none;
  background-color: #fff;
  cursor: pointer;
  text-align: center;
  font-family: 'Raleway', Arial, sans-serif;
}

/* Footer */

footer {
  background-color: #000;
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 60px;
}

footer ul {
  list-style-type: none;
  margin: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

footer li {
  float: left;
  font-size: 16px;
}

footer li a {
  display: block;
  padding: 8px 16px;
  text-decoration: none;
  color: #fff;
}




#apropos_form , #mentionslegales_form, #contact_form {
  position: relative;
  text-align: center;
  width: 40%;
  height: 60%;
  display: none;
  position: fixed;
  left: 50%;
  top: 5%;
  transform: translate(-50%, 5%);
  border: 3px solid #999999;
  z-index: 9;
  overflow-y: scroll;
  background-color: rgba(255, 255, 255, 0.8);
  padding: 30px;
}

.apropos_close_button, .mentionslegales_close_button, .contact_close_button {
  width: 120px;
  height: auto;
  padding: 5px;
  background-color: #111;
  cursor: pointer;
  margin: 20px;
  color: #fff;
  position: absolute;
  left: 50%;
  transform: translate(-50%, 15%);

}
