body {
    font-family:Helvetica, Arial, sans-serif;
    font-size: 1em;
    font-weight: 100;
    color: white;
    text-align: center;
    background-color: black;
    margin: 0;
    padding: 0;
}

nav ul {
    display: flex;
    justify-content: center;
    gap: 40px;
    list-style-type: none;
    margin: 0;
    padding: 3vh 0 5vh;
    text-align: center;
}

.trailer-btn{
    display:inline-block;
    padding: 15px 35px;
    color: black;
    text-decoration: none;
    background: linear-gradient(145deg, #f0f0f0, #858484, #e6e6e6);
    border-radius:999px;
}

.about-grid {
    display: grid;
    place-items: center;
}
.about-text {
    background-color: rgb(86, 84, 127);
    padding: 40px;
    border-radius: 12px;
    max-width: 800px;
    margin: 120px auto 40px;
}


header{
    background-image: url(../images/header_picture.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top; 
    height: 500px;
    padding:60px;
}

main {
    max-width:1000px;
    margin: 0 auto;
    padding: 20px;
}

main p {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
    line-height: 1.6;
}

.cast-grid{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    padding: 0 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.cast-card {

    display:flex;
    flex-direction: column;
    max-width: 350px;
    padding: 25px;
    align-items: center;
    border-radius: 10px;
    background-color: rgb(86, 84, 127);
    text-align: left;
    box-sizing:border-box;

}

.cast-card img{
    width: 100%;
    max-width: 258px;
    height: auto;
    display: block;
    margin-bottom: 15px;
}

h1 {
    font-size: 90px;
    color: rgb(253, 233, 59);
    text-shadow: 0px 0px 10px black;
    font-family: 'neue haas grotesk', 'helvetica', sans-serif;
    margin-top: 100px;
}

h2 {
    font-size: 44px;
    font-weight: 800;
    color: white;
}

h3 {
    font-size: 44px;
    font-weight: 800;
    color: white;
    margin-top: 0;
    margin-bottom: 20px;
}

a:link {
    font-family: 'Lucida Sans', 'Lucida Sans Regular',Verdana, sans-serif;
    font-size: 20px;
    font-weight: 300;
    color: rgb(253, 233, 59);
}
a:visited, a:hover, a:active {
    color: rgb(255, 255, 255);
}

footer {
    margin: 0 auto;
    padding: 30px;
    background-color:black;
    font-size: 16px;
    font-weight: 400;
    text-align: center;
}

footer ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 20px;
}