main {
    margin-top: 0;
}

@media only screen and (max-width: 895px)  {
    main {
        margin-top: 75px;
    }
}



/* Banner */

.banner-container {
    position: relative;
}

.banner-container img {
    width: 100%;
    max-height: calc(100vh - 100px);
    filter: brightness(0.75);
    object-fit: cover;
    vertical-align: middle;
    box-shadow: 0px 20px 30px 0px rgba(0, 0, 0, 0.25);
}

.banner-text {
    position: absolute;
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
    padding: 15px;
    text-align: center;
    font-size: 35px;
    background-color: rgba(0, 0, 20, 0.5);
    color: white;
}

@media only screen and (max-width: 800px) {
    .banner-text {
        font-size: 25px;
    }
}


/* Text, etc. */

.content-container {
    display: flex;
    flex-direction: column;
    width: 80%;
    max-width: 1250px;
    margin: 50px auto 0 auto;
}

.content-images {
    display: grid;
    grid-template-columns: calc(33.33% - 16.67px) calc(33.33% - 16.67px) calc(33.33% - 16.67px);
    gap: 25px;
}

.content-images img {
    width: 100%;
    vertical-align: middle;
}

@media only screen and (max-width: 500px) {
    .content-images {
        grid-template-columns: 100%;
    }

    .content-images img:nth-child(2) {
        margin: -100px 0;
    }
}

.cover-img {
    width: 80%;
    max-width: 400px;
    margin: 25px 0;
    align-self: center;
    vertical-align: middle;
    border-radius: 10px;
    box-shadow: 5px 5px 30px 5px rgba(0,0,0,0.25);
}

.content-container iframe {
    aspect-ratio: 16/9;
    width: 100%;
    max-width: 600px;
    margin-top: 15px;
    height: auto;
    box-shadow: 5px 5px 30px 5px rgba(0,0,0,0.25);
}
