*{
    margin: 0;
    padding: 0;
    background-color: white;
}
@font-face {
    font-family: Sansation R;
    src: url(Fonts/Sansation_Regular.ttf);
}


/* ----------Banniere  debut -----------------------     */

.container {
    height: 100px;
    width: 100%;
    display: flex;
    }

    
    h1 {
        font-size: 25px;
        padding: 5px;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        letter-spacing: 1px;
    }
    
    .container img {
        height: 45px;
        width: auto;
    }
    
  .logo_nom {
    left: 0;
    width: 45%;
    height: 100%;
    display: flex;
    justify-content: center;
    margin-left: 10%;
    gap: 5%;
    align-items: center;
    flex-wrap: wrap;
    transform: translateX(-30%);
  }
  
    .Liens {
        display: flex;
        align-items: center;
        justify-content: space-evenly;
        width: 55%;
        height: 100%;
        flex-wrap: wrap;
    }
    
    
    .Liens a {
        text-decoration: none;
        font-size: 22px;
        padding: 5px;
        font-family: Sansation R;
        letter-spacing: 1px;
        color: grey;
        position: relative;
        
    }

    .Liens a::after{
        content: '';
        width: 0%;
        
        height: 2px;
        background-color: grey;
        position: absolute;
        bottom: -5px;
        left: 50%;
        transition: .4s;
    }

    .Liens a:hover:after{
        width: 100%;
        left: 0%;
    }

    .Liens a:hover{
        color: black;
    }

  
  /* ----------Banniere  fin -----------------------     */
  


.photo{
    width: 100%;
    height: 100vh;
    overflow: hidden;
    position: relative;
}

.photo img{
   /* height: 140%;*/
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.separator1 {
    height: 0px;
}

.separator2 {
    height: 150px;
    background-color: white;
}

.separator3 {
    height: 150px;
    background-color: white;
}
.separator4 {
    height: 20px;
    background-color:white;
}

.photo__text a{
    position: absolute;
    z-index: 2;
    color: rgb(170, 170, 170);
    font-family: Sansation R;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: black;
    opacity: 70%;
    font-size: 32px;
    letter-spacing: 20px;
    padding: 40px;
    border-radius: 16px;
    text-decoration: none;
    filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.264));
}


.photo__text a:hover {
    color: white;
    border: 4px solid rgba(255, 255, 255, 0.9);
}


/*------ Liens sociaux -debut------*/
.social-links {
    display: flex;
    flex-wrap: wrap;
   justify-content: center;

}
.social-links img {
    height: 40px;
    margin-left: 20px;
    margin-right: 20px;
    margin-bottom: 40px;
}
/*------ Liens sociaux -fin------*/
  

  /* Turn off parallax scrolling for tablets and phones*/
  @media only screen and (max-device-width: 800px) {
    
    .container {
        height: 120px;
        width: 100%;
        display: flex;
        }

    h1 {
        font-size: 14px;
        padding: 1px;
    }
    .container img {
        height: 30px;
        width: auto;
    }


    .photo__text a{
        position: absolute;
        z-index: 2;
        color: rgb(170, 170, 170);
        font-family: Sansation R;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        background-color: black;
        font-size: 25px;
        letter-spacing: 5px;
        padding: 15px;
        border-radius: 6px;
        text-decoration: none;
        filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.264));
    }
    .logo_nom {
        left: 0px;
        width: 45%;
        height: 50%;
        display: flex;
        justify-content: center;
        margin: auto;
        padding-left: 5px;
        gap: 0;
        align-items: center;
        flex-wrap: wrap;
        transform: translateX(0);
      }

      .Liens a {
        text-decoration: none;
        font-size: 25px;
        padding: 2px;
        font-family: Sansation R;
        letter-spacing: 1px;
        color: grey;
        position: relative;
    }

    .separator2 {
        height: 50px;
        background-color: white;
    }
    
    .separator3 {
        height: 50px;
        background-color: white;
    }

  }