*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    scroll-behavior: smooth;
    font-family: sans-serif;
}
:root{
    --bcolor: rgb(53, 51, 59);
}
body{
    background-color: var(--bcolor);

}

/*header start*/
.logo img{
    width: 150px;
}
header{
    display: flex;
    align-items: center;
    background-color: rgb(37, 36, 41);
    position: sticky;
    top: 0;
}
.logo{
    margin-right: 50px;
}
nav a{
    color: white;
    font-size: 15px; 
    display: block;
    text-decoration: none;
}
nav{
    display: flex;
}
nav div{
    text-align: center;
    margin: 0px 30px;
    padding: 10px;
    width: 100px;
    border-radius: 5px;
}
nav div:hover{
    background-color: rgb(0, 0, 0);
}
nav div i{
    color: white;
    font-size: 20px;
    margin-bottom: 10px;
}


@media  screen and (max-width: 1000px) {
    nav a{     
        font-size: 10px; 
    }
    nav div i{
        font-size: 15px;
    }
    nav div{
        margin: 5px;
        padding: 10px;
        width: 100px;
        border-radius: 5px;
    }
}

@media screen and (max-width: 750px) {
    nav div{
        margin: 5px;
        padding: 10px;
        width: 80px;
        border-radius: 5px;
    }

    .logo{
        padding: 0px 10px;  
        margin-right: 50px;
    }
}
/*header end*/

/* select start */
.showContainer{
    text-align: center;
    margin: 20px 0px;
    color: white;
}
.showImage{
    width: 12%;
}
.studioText{
    padding-top: 8px;
    font-size: 20px;
    word-spacing: 5px;
}
.trailer{
    position: relative;
    
}
.trailer::after{
    content: "";
    background-color: #E70A0D;
    width: 0%;
    height: 2px;
    right: 0px;
    position: absolute;
    bottom: -5px;
    transition: 0.5s;
}
.trailer:hover::after{
    width: 75%;
}
.originals{
    justify-content: center;
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    
}
.originalsDiv{
    width: 450px;
    height: 300px;
    margin: 10px;
    box-shadow: 5px 5px 5px 0px rgba(0, 0, 0, 0.276); /* box-shadow: width height blur spread color */
    border-radius: 10px;
    cursor: pointer;
    transition: 0.7s;
}
.originalsDiv:hover{
    transform: scale(1.1);
}
.showTitle{
    color: white;
    padding-top: 10px;
    font-size: 15px;
    display: inline-block;
    position: relative;
    cursor: pointer;
}
.showTitle::after{
    content: "";
    background-color: #E70A0D;
    width: 0%;
    height: 2px;
    left: 0px;
    position: absolute;
    bottom: -5px;
    transition: 0.5s;
}
.showTitle:hover::after{
    width: 100%;
}

.originalsImage img{
    border-radius: 10px;
    width: 100%;  
}
/* select end */

/* footer start */
footer{
    padding-top: 15px;
}
footer h5{
    color: white;
    text-align: center;
    font-size: 15px;
}
.footerTerm{
    padding: 10px;
}
.footerTerm:hover{
    color: rgb(207, 42, 24);
}
/* footer end */