*{
    margin: 0;
    box-sizing: border-box;
}

body{
    padding-top: 5px;
    font-family: Arial, Helvetica, sans-serif;
    background-color: #111;
}

.row_poster{

    width: 100%;
    object-fit: contain;
    max-height: 100px;
    
    margin-right: 10px;
    transition: transform 450ms;
    
}

.row_posters{

    display: flex;
    overflow-y: hidden;
    overflow-x: scroll;
    padding: 20px;
}

.row_poster:hover{
    transform: scale(1.08);
}

.row_posters::-webkit-scrollbar{
    display: none;
}

.row_poster_large{

    max-height: 250px;
}

.row_poster_large:hover{

    transform: scale(1.09);
}

.row{

    color: white;
    margin-left: 20px;
    
}

.banner{

    background-image: url('images/banner.jpg');
    background-size: cover;
    background-position: center center;
    color: white;
    object-fit: contain;
    height: 445px;;
}


.banner_contents{
    margin-left: 30px;
    padding-top: 140px;
    height: 190px;
}

.banner_title{

    font-size: 3rem;
    font-weight: 800;
    padding-bottom: 0.3rem;
}

.banner_description{

    width: 45rem;
    line-height: 1.3;
    padding-top: 1rem;
    font-size: 1rem;
    max-width: 360px;
    height: 180px;
}

.banner_button{

    cursor: pointer;
    color: white;
    outline: none;
    border: none;
    font-size: medium;
    font-weight: 700;
    border-radius: 0.2vw;
    text-align:center;
    margin-right: 1rem;
    padding-top: .5rem;
    padding-bottom: 1.6rem;
    background-color: rgba(51, 51, 51, .6);
    height: 20px;
    width: 110px;
     
}

.banner_button:hover{
    color: #000;
    background-color: white;
    transition: all 0.2s;
}

.banner_fadeBottom{
    margin-top: 145px;
    height: 7.4rem;
    background-image: linear-gradient(180deg, transparent, rgba(37,37,37,0.61), #111);
}

.nav_logo{

    width: 80px;
    object-fit: contain;

}

.nav_avatar{

    width: 30px;
    object-fit: contain;
}

.nav_avatar:hover{

    transform: scale(1.08);
}

.nav{

    position: fixed;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 20px;
    z-index: 1;
    transition-timing-function: ease-in;
    transition: all 0.5s;
}

.nav_black{

    background-color: #111;
}

.footer{

    text-align: center;
    margin-top: 30px;
    margin-bottom: 30px;
}

.title{

    margin-top: 20px;
}