.jumbotron {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;

    height: 400px;
}

.jumbotron h1, h2 {
    margin: 0;
    color: var(--gold);
    text-shadow: 0px 3px 10px rgba(0,0,0,0.75);
}

.description {
    text-align: center;

    padding-top: 4rem;
    padding-left: 20%;
    padding-right: 20%;
    padding-bottom: 2rem;
}

.gallery {
    width: 100vw;
    padding-top: 2rem;
    padding-left: 15%;
    padding-right: 15%;
    padding-bottom: 4em;

    display: flex;
    gap: 20px;
    overflow: hidden;
    flex-wrap: wrap;
}

.gallery img {
    width: 32%;
    aspect-ratio: 1;
    object-fit: cover;
    object-position: center;
}

@media only screen and (max-width: 865px) {
    .jumbotron {
        height: 250px;
    }

    .description {
        padding-left: 10%;
        padding-right: 10%;
    }

    .gallery {
        padding-left: 5%;
        padding-right: 5%;
    }

    .gallery img {
        width: 100%;
    }
}