body {
    color: white;
    text-decoration: solid;
    font-size: 14px;
    font-family: montserrat, sans-serif;
    margin: 0;
    padding: 0;
    background: url(images/bg.jpg);
    background-size: cover;
  
  }

.header{
    height: 100px;
    background: rgba(0,0,0,0.4);
    padding: 0 20px;
    color: #fff;
}

.logo{
    line-height: 100px;
    float: left;
    text-transform: uppercase;
}

.menu{
    float: right;
    line-height: 100px;
}

.menu a{
    color: #ddd;
    text-transform: uppercase;
    text-decoration: none;
    padding: 0 10px;
    transition: 0.4s;
    font-size: 18px;
    font-weight: bold;
}

.show-menu-btn,.hide-menu-btn{
    transition: 0.4s;
    font-size: 30px;
    cursor: pointer;
    display: none;
}

.show-menu-btn{
    float: right;
}

.show-menu-btn i{
    line-height: 100px;
}
  
.menu a:hover,
.show-menu-btn:hover,
.hide-menu-btn:hover{
    color: #3498db;
}

#chk{
    position: absolute;
    visibility: hidden; 
    z-index: -1111;
}
 
@media screen and (max-width:800px) {
  .show-menu-btn,.hide-menu-btn{
      display: block;
    }  
  .menu{
      position: fixed;
      width: 100%;
      height: 100vh;
      background: #333;
      right: -100%;
      top: 0;
      text-align: center;
      padding: 80px 0;
      line-height: normal;
      transition: 0.7s;
    }
  .menu a{
      display: block;
      padding: 20px;
  }
  .hide-menu-btn{
      position: absolute;
      top: 40px;
      right: 40px;
  }
  #chk:checked ~ .menu{
      right: 0;
  }
}

.page{
    width: 60%;
    background: rgba(0,0,0,0.4);
    padding: 40px;
    text-align: left;
    margin: auto;
    margin-top: 5%;
    margin-right: 20%;
    margin-left: 20%;
    color: white;
}

.page h1{
    text-align: center;
    color: #ddd;
    text-transform: uppercase;
}

.box{
    width: 60%;
    background: rgba(0,0,0,0.4);
    padding: 40px;
    text-align: center;
    margin: auto;
    margin-top: 5%;
    margin-left: 20%;
    margin-right: 20%;
    color: white;
    font-family: 'montserrat', sans-serif;  
}

.box-img{
    border-radius: 50%;
    width: 300px;
    height: 300px;
}

.box h1{
    font-size: 40px;
    letter-spacing: 4px;
    font-weight: 100;
}

.box h5{
    font-size: 20px;
    letter-spacing: 3px;
    font-weight: 100;  
}

ul{
    margin: 0;
    padding: 0;
}

.box li{
    display: inline-block;
    margin: 6px;
    list-style: none;
}

.box li a{
    color: white;
    text-decoration: none;
    font-size: 40px;
}

table{
  align-items: center;
}

table td{
  padding-left: 50px;
}

table tr{
  border-bottom: 2px solid white;
}

.contact-section{
  padding: 40px 0;
}

.contact-section h1{
  text-align: center;
  color: #ddd;
  text-transform: uppercase;
}

.border{
  width: 180px;
  height: 10px;
  background: #ddd;
  margin: 40px auto;
}

.contact-form{
  max-width: 600px;
  margin: auto;
  padding: 0 10px;
  overflow: hidden;
}

.contact-form-text{
  display: block;
  width: 100%;
  box-sizing: border-box;
  margin: 16px 0;
  border: 0;
  background: #111;
  padding: 20px 40px;
  outline: none;
  color: #ddd;
  transition: 0.5s;
}

.contact-form-text:focus{
  box-shadow: 0 0 10px 4px #34495e;
}

textarea.contact-form-text{
  resize: none;
  height: 120px;
}

.contact-form-btn{
  float: right;
  border: 0;
  background: #34495e;
  color: #fff;
  padding: 12px 50px;
  border-radius: 20px;
  cursor: pointer;
  transition: 0.5s;
}

.contact-form-btn:hover{
  background: #2980b9;

}

.gallery-section{
  box-sizing: border-box;
  width: 100%;
  padding: 60px 0;
}

.inner-width{
  width: 100%;
  max-width: 980px;
  margin: auto;
  padding: 0 20px;
}

.gallery-section h1{
  text-align: center;
  text-transform: uppercase;
  color: #ddd;
}

.gallery-section .gallery{
  display: flex;
  flex-wrap: wrap-reverse;
  justify-content: center;
}

.gallery-section .image{
  flex: 25%;
  overflow: hidden;
  cursor: pointer;
}

.gallery-section .image img{
  width: 100%;
  height: 100%;
  transition: 0.4s;
}

.gallery-section .image:hover img{
  transform: scale(1.4) rotate(15deg);
}

@media screen and (max-width:960px) {
  .gallery-section .image{
    flex: 33.33%;
  }
}

@media screen and (max-width:768px) {
  .gallery-section .image{
    flex: 50%;
  }
}

@media screen and (max-width:480px) {
  .gallery-section .image{
    flex: 100%;
  }
}

.auteur {
  text-align: center;
}