body {
    /* font-family: optima, sans-serif; */
    background-color: black;
    color: white;
}

img {
    max-width: 30vw;
    height: auto;
}

img:hover {
    filter: blur(10px);
}

h1 {
    max-width:48vw;
    line-height: .9;
}

header {
    margin-bottom: 10vh;
}

#headshot {
    max-width: 15vw;
    height: auto;
}

a {
    text-decoration: none;
    /* color: black; */
}

footer {
    margin-top: 5vh;
    margin-bottom: 5vh;
}

h1, h2 {
    font-weight: normal;
}

#Films {
    margin-bottom: 5vw;
}

#Commercials {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem 1.5rem;
    align-items: start;
}

#Commercials > h2 {
    grid-column: 1 / -1;
    margin-bottom: 0.5rem;
}

#Commercials span.videos {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

#Commercials span.videos img {
    width: 100%;
    height: auto;
    max-width: 100%;
}

#Commercials span.videos p {
    margin: 0;
    line-height: 1.1;
}

#Films {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem 1.5rem;
    align-items: start;
}

#Films > h2 {
    grid-column: 1 / -1;
    margin-bottom: 0.5rem;
}

#Films span.videos {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

#Films span.videos img {
    width: 100%;
    height: auto;
    max-width: 100%;
}

#Films span.videos p {
    margin: 0;
    line-height: 1.1;
}

@media (max-width: 600px) {
    #Commercials,
    #Films {
        grid-template-columns: 1fr;
    }

    h1 {
    max-width: 90vw; 
    }

    #headshot { 
    max-width:35vw;
    }
}