body{
    margin: 0%;
    padding: 0%;
    background-color: rgb(0, 0, 0);
    font-family: Arial, Helvetica, sans-serif;
    color: white;
}

.hero{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 120vh;
    background-image: url("../img/hero.jpg");
    background-size: cover;
    background-position: center;
    text-align: center;
    order: 2;
    color: white;
}

.hero-banner{
    display: flex;
    flex-direction: row;
    gap: 1rem;
    background-color: rgba(0, 0, 0, 0.7);
    background-size: cover;
    padding: 1rem;
    align-items: center;
    width: 100%;
    justify-content: center;
}

.trailer-button{
    background-color: goldenrod;
    padding: 1em;
    border-radius: 7px;
    font-weight: bold;
}

.trailer-button a:hover{
    transform: none;
}

.trailer-button:hover{
    transform: scale(0.9);
    transition: 0.3s;
    background-color: darkgoldenrod;
}

.cast-grid{
    display: grid;
    margin: 1em 15em;
    grid-template-columns: 1fr 1fr;
    gap: 2em;
    max-width: 100%;
}

.cast-grid img{
    width: 100%;
    height: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 7px;
}

.grid-word{
    grid-column: 1 / 3;
}

.grid-word a{
    color: white;
}

.grid-word a:hover{
    color: rgb(255, 255, 255);
    transform: scale(1.15);
    transition: 0.3s;
}

.grid-word p{
    margin: 0;
}

a{
    display: inline-block;
    color: black;
    text-decoration: none;
}

a:hover{
    color: black;
    transform: scale(1.15);
    transition: 0.3s;
}

header{
    display: flex;
    flex-direction: column;
}
nav{
    background-color: goldenrod;
    order: -1;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    font-weight: bold;
}

nav ul{
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

li{
    list-style: none;
}

header h1{
    margin: 1rem;
    color: black;
}

h2, p{
    padding: 0.5rem 0;
    margin: 1rem;
}


footer{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    background-color: black;
    color: white;
    padding: 1rem;
}

footer img{
    width: 10rem;
    height: auto;
}

footer p{
    color: white;
    font-size: small;
}

hr{
    border-color: darkgoldenrod;
}