body{
    margin: 0;
    background-color: black;
    font-family: Arial, Helvetica, sans-serif;
    color: white;
}

header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 32px;
    background-color: rgba(122, 121, 121, 0.756);
    position: sticky;
    top: 0;
}

.logo{
    font-size: 34px;
    font-weight: bold;
    color: red;
}

.nav-link a{
    color: white;
    margin-left: 16px;
    text-decoration: none;
}

.banner{
    background: url(../images/movies/movie-banner.jpg) no-repeat center/cover;
    height: 200px;
    display: flex;
    align-items: flex-end;
    padding: 32px;
    box-shadow: inset 0 -100px 200px black;/*bóng đổ vào trong*/
}

.banner h1{
    font-size: 48px;
    margin: 0;
}

.section{
    padding: 32px;
}

.row{
    display: flex;
    overflow-x: auto;
    gap: 16px;
}

.movie{
    width: 200px;
    height: 300px;
    background: gray;
    border-radius: 5px;
    background-size: cover;
    background-position: center;
}

.movie:hover{
    transform: scale(1.25);
    transition: transform 0.3s;
}