body{
    margin: 0;
    background-color: black;
    font-family: Arial, Helvetica, sans-serif;
    color: aliceblue;
}

header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: black;
    position: sticky;
    top: 0;
}

.logo{
    color: crimson;
    font-size: 30px;
    font-weight: bold;
}

.nav-link a{
    color: white;
    margin-left: 1em;
    text-decoration: none;
}

.banner{
    background-image:url(../images/movies/movie-banner.jpg);
    height: 200px;
    display: flex;
    align-items: flex-end;
    padding: 2em;
    box-shadow: 0px -100px 200px black;
}

.banner h1{
    color: white;
    font-size: 3em;
    margin: 0;
    text-shadow: 3px 3px 4px black;
}

.section{
    padding: 2em;
}

.row{
    display: flex;
    overflow-x: auto;
    gap: 1em;
}

.movie{
    width:200px;
    height: 300px;
    border-radius: 5px;
    background-size: cover;
    background-position: center;
}

.movie :hover{
    transform: scale(1.05);
    transition: transform 0.3s;
}