*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}


/* for android */
@media  only screen and (max-width:480px) {
    .logo>img{
        width: 110px;
    }
  .nav-btns>.nav-btn-1{
    /* background-color: ; */
    padding: 7px;
  }
  .nav-btns>.nav-btn-2{
    padding: 7px;
  }
.content>span:first-child{
    font-size: 20px;
}
.content>span:nth-child(2){
    font-size: 17px;
}
.content>span:last-child{
    font-size: 13px;
}
    
}








html,body{
    height: 100vh;
    width: 100vw;
}
.header{
    height: 90vh;
    width: 100vw;
    position: relative; 
    z-index: 0;
    background-image: url(./images/newflix-bg.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: max(1200px,100vw);

}
.curtain{
    height:90vh ;
    width: 100vw;
    position: absolute;
    background-color: black;
    opacity: 0.5;
    z-index: 1;
}
.nav{
    display: flex;
    top: 3%;
    /* background-color: rebeccapurple; */
    max-width: 60%;
    margin: auto;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 3;
}

.nav-btn{
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.nav-btn-1{
padding: 10px;  
background-color: gray;  
color: white;
border: none;
border-radius: 10px;
font-weight: 700;
text-transform: capitalize;
}
.nav-btn-2{
    padding: 10px;
    background-color: red;
    color: white;
    border-radius: 10px;
    border: none;
    text-transform: capitalize;
    font-weight: 700;
}

.content{
    height: 100%;
    width: 100%;
    color: white;
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center ;
    flex-direction: column;
    gap: 20px;
}

span:first-child{
    font-size: 40px;
    font-weight: 800;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
   text-transform: capitalize;
}
span:nth-child(2){
    font-size: 20px;
    /* font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif; */
    font-weight: 400;
}