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