*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial,sans-serif;
}

body{
    background:#000;
    color:#fff;
}

.banner{
    height:100vh;
    background:
    linear-gradient(rgba(0,0,0,.7),rgba(0,0,0,.7)),
    url("https://picsum.photos/1600/900");
    background-size:cover;
    background-position:center;
}

nav{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px 50px;
}

nav h1{
    color:red;
    font-size:45px;
    font-weight:bold;
}

.nav-right{
    display:flex;
    align-items:center;
}

select{
    padding:8px 12px;
    background:black;
    color:white;
    border:1px solid white;
    border-radius:5px;
}

#signin{
    padding:8px 18px;
    margin-left:10px;
    background:red;
    color:white;
    border:none;
    border-radius:5px;
    cursor:pointer;
}

#signin:hover{
    background:#c11119;
}

.content{
    text-align:center;
    margin-top:150px;
}

.content h2{
    font-size:60px;
    margin-bottom:20px;
}

.content h3{
    margin-bottom:20px;
}

.content p{
    margin-bottom:20px;
}

#email{
    width:320px;
    padding:12px;
    border:none;
    border-radius:5px;
}

.start{
    padding:12px 20px;
    background:red;
    color:white;
    border:none;
    border-radius:5px;
    margin-left:10px;
    cursor:pointer;
}

.start:hover{
    background:#c11119;
}

.trending{
    padding:40px;
}

.trending h2{
    margin-bottom:20px;
}

.movies{
    display:flex;
    gap:20px;
    overflow-x:auto;
    padding-bottom:10px;
}

.movies::-webkit-scrollbar{
    display:none;
}

.movie{
    position:relative;
    flex:0 0 auto;
}

.movie img{
    width:180px;
    height:250px;
    border-radius:10px;
    transition:0.3s;
}

.movie img:hover{
    transform:scale(1.1);
}

.movie span{
    position:absolute;
    left:-15px;
    bottom:-10px;
    font-size:60px;
    font-weight:bold;
    color:white;
    text-shadow:3px 3px 5px black;
}