*{
    margin: 0;
    padding: 0;
    /* background-color: black; */
}

body{
    font-family: Arial, Helvetica, sans-serif;
    background-color: black;
}
.container{
    display: flex;
    margin: 5px;
}

.head img{
    position: relative;
    width: 11%;
    z-index: 1;
    margin-left: 10px;
    margin-top: -15px;
    margin-bottom: -14px;
}
.home-image{
    background-image: url(assets/hoome.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 98%;
    height: 90vh;
    border-radius: 20px;
    position: relative;
    filter: brightness();

}
.home-image-text{
    color: aliceblue;
    position: relative;
    width: 30%;
    top: 13em;
    left: 3em;
    z-index: 1;

}
.money{
    width: 150%;
    height: auto;
}
.play-button{
    background-color: red;
    color: black;
    border-radius: 4px;
    width: 70px;
    padding: 5px 20px 0px;
    font-size: 25px;
}

.play-button img{
    margin-top: 0px;
    padding-left: 5px;
    width: 25px;
    position: absolute;
}
/* Netflix Originals Top Rated */
.original{
    color: aliceblue;
    padding-left: 0px;
}

.original h3{
    margin-top: 10px;
}

.original .no-title{
    font-size: 20px;
    padding-left: 10px;
    color: white;
    line-height: 1px;
    font-weight: 5px;
    margin-bottom: 19px;

}
.original .no{
    display: flex;
    height: 55vh;
    padding-top: 2px;
    margin-left: 0px;
    margin-bottom: -50px;
    overflow-y: hidden;
}

.original .no img{
    width: 200px;
    height: 280px;
    margin: 3px;
    margin-left: 8px;
    border-radius: 10px;
}

.original .no img:hover{
    transform: scale(1.1);
    transition: 0.4s ease-in-out;
    transition-delay: 0.1s;
    filter: brightness(70%);
}

/* Popular Movies Hollywood Movies */
.original1{
    color: aliceblue;
    padding-left: 0px;
}

.original1 h3{
    margin-top: 10px;
}

.original1 .no-title{
    font-size: 20px;
    padding-left: 10px;
    color: white;
    line-height: 1px;
    font-weight: 5px;
    margin-bottom: 19px;

}
.original1 .no{
    display: flex;
    height: 40vh;
    padding-top: 2px;
    margin-left: 0px;
    margin-bottom: -50px;
    overflow-y: hidden;
}

.original1 .no img{
    width: 120px;
    height: 180px;
    margin: 3px;
    margin-left: 8px;
    border-radius: 10px;
}

.original1 .no img:hover{
    transform: scale(1.1);
    transition: 0.4s ease-in-out;
    transition-delay: 0.1s;
    filter: brightness(70%);
}



html{
    overflow: scroll;
    overflow-x: hidden
}

::-webkit-scrollbar{
    width: 2px;
    background: transparent;
}


