*{
    margin: 0;
    padding: 0;
}
body{
    font-family: 'Netflix Sans', sans-serif;
    background-color: #111;
}
::-webkit-scrollbar{
    width: 7px;
    background-color: #111;    
}
::-webkit-scrollbar-thumb{
    background-color: white;
    border-radius: 10px;
}
.nav{
    position: fixed;
    top: 0;
    padding: 20px 40px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 1;
    transition-timing-function: ease-in;
    transition: all .5s;
}
.nav.active{
    background-color: #111;
}
.nav__left{
    margin-left: 10px;
}
.nav_logo{
    width: 180px    
}
.nav__right{
    position:fixed;
    right: 30px;
    display: flex;
    margin-right: 10px;
}
.nav_avatar{
    width: 40px;
}
#banner{
    color: white;
    object-fit: contain;
    height: 644px;
    background-position: center center;
    background-size: cover;    
}
#banner__contents{
    margin-left: 70px;
    padding-top: 340px;
    height: 190px;
}
#banner__title{
    font-size: 3rem;
    font-weight: 800;
    padding-bottom: 0.3rem;
}
#banner__description{
    width: 45rem;
    line-height: 1.5;
    padding-top: 1rem;
    font-size: .9rem;
    max-width: 360px;
    height: 80px;
}
#banner__button{
    cursor: pointer;
    color: white;
    outline: none;
    border: none;
    font-weight: 700;
    border-radius: .2vw;
    padding-left: 2rem;
    margin-top: 1rem;
    margin-bottom: 1rem;
    padding-right: 2rem;
    margin-right: 1rem;
    padding-top: .5rem;
    background-color: rgba(51,51,51,.5);
    padding-bottom: .5rem;
}
#banner__button:hover{
   color: black;
   background-color: #e6e6e6;
   transition: all .3s; 
}
#banner__fadeBottom{
    height:7.4rem;
    background: linear-gradient(
       180deg,
       transparent,
       rgba(37,37,37, .61),
       #111 
    );
}

.row{
    margin-left: 20px;
    color: white;
}
.row__poster{
   object-fit: contain;
   width: 100%;
   max-height: 120px;
   margin-right: 10px;
   transition: transform 500ms; 
}
.row__posters::-webkit-scrollbar{
    display: none;
}
.row__posters{
    display: flex;
    overflow-y: hidden;
    overflow-x: scroll;
    padding: 20px;
}
.row__poster:hover{
    transform: scale(1.08);
}
.row__posterLarge,
.row__posterLarge1,
.row__posterLarge2{
    object-fit: contain;
    width: 100%;
    max-height: 250px;
    margin-right: 10px;
    transition: transform 500rms;    
}
.row__posterLarge:hover,
.row__posterLarge1:hover,
.row__posterLarge2:hover{
    transform: scale(1.09);
    opacity: 1;
}

    