*{
    margin:0;
    padding:0;
    box-sizing: border-box;
}
body{
    font-family: Arial, Helvetica, sans-serif;
    background-color: black;
}
.row_poster{
  width:100%;
  object-fit: contain; 
  max-height: 130px;
    
  margin-right: 10px;
  transition:transform 450ms;
}
.row_posters{
  display: flex;
  overflow-x: scroll;
  overflow-y: hidden;
  padding: 20px;
}
.row_poster:hover{
    transform: scale(1.08);
}
.row_posters::-webkit-scrollbar{
    display: none;
}
.row_posterlarge{
    max-height:250px;

}
.row_posterlarge:hover{
     transform: scale(1.09);
}
.row{
    margin-top: 10px;
    color:white;
    margin-left:15px;
}
.banner{
    background: url(images/bg1.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    color: white;
    height: 450px;
    object-fit: contain; 
    background-position: top center;
     transition: background-image 1s ease-in-out;
    /* animation:sample 20s infinite  ease-in-out; */
}
@keyframes sample {
    0%{
    background: url(images/bg1.jpg);
    
    }
    25%{
 background: url(images/aven.jpg);
    }
    50%{
 background: url(images/michel.jpg);
    }
    75%{
 background: url(images/moana.jpg);
    }
    100%{
 background: url(images/jana.jpg);
    }
    
}
.banner_contents{
    margin-left: 30px;
    padding-top:140px;
    height:190px;
      max-width:500px;

}
.banner_title{
    font-size:50px;
    font-weight:800;
    padding-bottom:10px;
}
.banner_description{
  width:55rem; 
  font-size: 19px;
  padding-top:1rem;
  max-width:460px;
  height:180px; 
}
.banner_button{
    cursor:pointer;
    color:#fff;
    outline:none;
    border:none;
    font-weight:800;
    font-size: 20px;
    border-radius: 0.2vw;
    padding-left: 2rem;
    padding-right: 2rem;
    margin-right: 1rem;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    background-color: rgba(51, 51,51, 0.5);
}
.banner_button:hover{
    color:#000;
    background-color: #e6e6e6;
    transition: all 0.2s;
}
.banner_fade{
    margin-top: 145px;
    height:7.4rem;
    background-image: linear-gradient(180deg,transparent);
}
.nav_logo{
   width:120px;
   object-fit: contain; 
}
.nav_avatar{
 width:40px;
 object-fit: contain;  
}
.btn1{
font-size:22px;
  font-weight: bold;
  background-color: black;  
  padding:8px 15px;
  border-radius: 8px;
  color: rgb(238, 11, 11);
  text-decoration: none;transition: 0.3s;
}
.btn1:hover{
    color:black;
    background-color: rgb(245, 61, 61);
}
.l1{
 display: flex;
    align-items: center;
    gap: 12px;   /* space between avatar and login */
}
.nav{
position:fixed;
top:0;
width:100%;
display:flex;
align-items: center;
justify-content:space-between;
padding:20px 40px;
z-index:1;
transition-timing-function:ease-in ;
transition:all 0.5s;
}
.nav_black{
    background-color: #111;
}

/* footer */
.footer {
 
 color: #1a1a28;
  
  width:80%;
  margin: 50px auto;
  margin-top: 60px;
}
.foot-container{
  display: flex;
  justify-content: space-between;
  gap:20px
}
.product{
  flex-direction: column;
  display: flex;
 
}
.product h3{
    color: #777;
    margin-bottom: 10px;
}
.product a{
  padding-bottom: 6px;
    padding-top: 6px;
    color:#777;
    text-decoration: none;
}
.product a:hover{
  text-decoration: underline;
} 
select{
    background-color: #111;
    color: #e6e6e6;
}
select:hover{
    background-color: #e6e6e6;
    color:black
}
.blk{
  font-size:20px;
  padding:14px 12px;
  display:block;
  min-width:230px;
  max-height: 250px;
  margin-top:34px;}

 /* media query */
  @media (max-width:768px){

.banner{
height:350px;
}

.banner_title{
font-size:30px;
}

.banner_description{
font-size:14px;
max-width:300px;
height:auto;
}

.banner_contents{
padding-top:120px;
margin-left:15px;
}

.banner_button{
font-size:14px;
padding:6px 14px;
}

.row_poster{
max-height:100px;
}

.row_posterlarge{
max-height:160px;
}

.nav_logo{
width:90px;
}

.nav_avatar{
width:30px;
}

.btn1{
font-size:16px;
padding:6px 10px;
}

.foot-container{
flex-direction:column;
gap:30px;
}

.footer{
width:90%;
}

}
@media (max-width:480px){

.banner{
height:300px;
}

.banner_title{
font-size:24px;
}

.banner_description{
font-size:13px;
max-width:250px;
}

.banner_button{
font-size:12px;
padding:5px 10px;
}

.row_poster{
max-height:90px;
}

.row_posterlarge{
max-height:140px;
}

.nav{
padding:15px 20px;
}

}
@media (max-width:1024px){

.banner_title{
font-size:40px;
}

.banner_description{
max-width:400px;
}

.row_posterlarge{
max-height:200px;
}

}