*{
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
    font-family:Poppins;
    
}
body{
    background-color: black;
}

.first{
    background-image:linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("./img/banner.jpg" ) ;
    background-repeat: no-repeat;
    background-size: cover;
    /* background-blend-mode: color; */
    background-color: rgba(0,0,0,.5) ;
    width: 100%;
    height:100vh;
    padding: 0px 100px;
    box-shadow:  5px 10px #888888;;
    /* background-image: linear-gradient(black ,white); */

}

nav{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 10px;
    margin-bottom:100px ;
}
.main{
    padding-top: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
    h1{
        font-size:50px;
        padding: 0px 0px;
        line-height: 80px;
        font-weight: 900;
    }
    h2{
        padding: 0px 0px;
        font-weight: 500;
    }
    h3{
        padding: 10px 0px;
        font-size: 16px;
        font-weight: 400;
    }


}

.form{
    padding-top: 20px;
    button{
        padding: 8px 16px;
        font-size: 18px;
        background-color: red;
        color: white    ;
        font-weight: bold;
        border:1px solid red;
        border-radius: 5px;
    }
}
input{
    padding: 10px 18px;
    font-size: 15px;
    color: white;
    width: 400px;
    background-color: rgba(0,0,0,.5);
    border:1px white solid;
    border-radius: 5px;
    
}::placeholder{
    color: white;
}


#language{
    min-width: 100px;
    padding:10px 5px;
    color: white;
    background-color:rgba(0,0,0,.7);
    
    border-radius: 5px;
}
.signin{    
    min-width: 80px;
    padding:10px 5px;
    background-color: red;
    color: white;
    border-radius: 5px;
}
.second{
    z-index: 1;
    /* height: 100vh; */
    display: flex;
    flex-direction: column;
    padding: 50px 150px;
    /* align-items:stretch; */
}
.trending{
    display: flex;
    flex-direction: column;
    padding-bottom: 20px;
    h3{
        color: white;
    }
    .movies{
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        padding: 20px;
        .movie{

            position:relative;
        }
        img{
            border-radius: 10px;
        }
        span{
            font-size: 100px;
            color: white;
            position: absolute;
            bottom: 8px;
            right: 180px;
        }

    }
}
.more-reason{
    h3{
        color: white;
        padding-bottom: 20px;
    }
    .reasons{
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        
        .reas{
            width:19vw;
            padding: 18px;
            height: 19vw; 
             background-image: linear-gradient(rgb(25, 33, 69),rgb(33, 15, 24));
            border-radius: 20px;
            position: relative;
            h3{
                font-weight: 500;
                font-size: 22px;
            }
            p{
                color: #a3a2a2;
                font-size: 14px;
                font-weight: 500;
            }
            span,i{
                width: 80px;
                position: absolute;
                bottom: 22px;
                right: -1px;
            }
        }
    }
}
.accordion{
    margin: 10px 150px;
    border-radius: 10px;

}
.accordion-item{
    margin-top: 10px;
    border-radius: 6px;
    overflow: hidden;

}
.accordion-button::after {
  filter: invert(1); /* Inverts the default black caret to white */
}

.ready{
    padding: 20px 0px;
    display: flex;
    flex-direction: column;
    align-items: center;
    p{
        color:white
    }
}
footer{
    padding: 10px 150px;
    p{
        color: white;
    }
    a{
        color: #b3b3b3;
    }
    .btm{
        display: flex;
        flex-direction: row;
        justify-content:space-between ;
        align-items: center;
        li{
            list-style: none;
            line-height: 50px;
        }
    }
    
}