body {
    background-color: var(--main);
    align-items: center;
}
h1 {
    margin-top: 0;
    color: var(--neutralLight);
    text-align: center;
    font-weight: normal;
    font-size: 3.5rem;
}
h1 span {
    font-size: 2.5rem;
    color: var(--comp);
    text-shadow: 1px 1px 0px var(--neutralLight);
}
header {
    grid-template-columns: auto 1fr;
    height: auto;
    padding: 1rem 0;
}
footer {
    display: flex;
    font-family: bodyExtraLight;
    justify-content: space-between;
    color: var(--neutralLight);
    font-weight: 300;
    font-size: 1.25rem;
}
nav {
    padding-top: 1rem;
}
.small {
    display: none;
}
.imagesAndVideo {
    display: flex;
    gap: 5rem;
    padding: 0 5rem;
}
.imageContainer,
.videoContainer {
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    flex: 1;
    filter: drop-shadow(1px 1px 2px var(--neutralLight));
}
img {
    display: block;
}
img, 
video {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}
video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
@media only screen and (max-width: 1110px) {
    .imagesAndVideo {
        display: grid;
        grid-template-columns: 1fr 1fr;
        padding: 0 .5rem;
        gap: 1rem;
    }    
}
@media only screen and (max-width: 840px) {
    .small {
        display: block;
    }
}
@media only screen and (max-width: 470px) {
    .imagesAndVideo {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(4,1fr);
    }  
    .imageContainer, 
    .videoContainer {
        border-radius: 16em;
    }  
}
@media only screen and (max-width: 340px) {
    footer {
        display: block;
    }
