*,
*::after,
*::before {
  box-sizing: border-box;
}


@font-face {
  font-family:'Miskan' ;
  src: url(Miskan.woff) format("woff");
  font-weight: normal;
  font-style: normal;
}

body{
    margin-left: 50px;
    margin-right: 50px;
    background-color: #0F2A23;
    color: #d7ae71;
    font-family: "Zen Old Mincho", serif;
   
 
}


nav{
  position: sticky;
  top: 10px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  background: #8db39f33;
  box-shadow: 0 8px 15px 0 #5ca5895e;
  border: #8db39f33 solid;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 20px;
  height: 50px;
  backdrop-filter: blur(25px);

}

a{
  color: #d7ae71;
  text-decoration:none;
  font-size: 1.7rem;
  padding: 5px;
}

.logo{

    font-size: 2.5rem;
    text-decoration: none;
    color: #d7ae71;
     font-family: 'Miskan';}

form{
margin-top: 20px;
text-align: center;
font-size: 1.5rem;
}

input{
      border-radius: 9999px 0% 0% 9999px;
       width: 500px;
       height: 40px;
    }

    button{
        height: 40px;
        border-radius: 0% 9999px 9999px 0%;
        color: #d7ae71;
        background-color: rgb(209, 209, 209);
    }


.img-header{
  display: block;
  max-width: 80rem;
  opacity: 70%;
  margin-top: 15px;
  margin: auto;

 
}

h1{
  font-family: 'Miskan';
  font-size: 8rem;
  text-align: center;
  margin: 0;
  z-index: 2;
  
}



p{  
  color: white;
  font-size: 1.5rem;
 width: 700px;
 
  
}


h2{
  
  color: #d7ae71;
  font-size: 3.2rem;
  font-family: 'Miskan';
  text-align: right;
}


section{
  text-align: right;
}

article{
  height: 100vh;
  padding: 15px;
}

article h2 {
  font-size: 5rem;
  margin-bottom: 8rem;
}

.film-container {

    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
    
  }
  


.film {
perspective: 100px;
  
}
  
  .affiche {
    width: 200px;
    opacity: 70%;
    transform: rotateY(5deg);
    transition: transform 0.3s ease;

  }

  .affiche:hover{
    transform: rotate(0) scale(1.4);
    opacity: 100%;
  }


  @media (width<=768px) {
    body{
      background-color: rgb(47, 43, 43);   }

 


  }