*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
.gallery_title
{   
    margin-top: 40px;
    margin-bottom: 10px;
    font-size: calc(4 * (1vw + 1vh)/2);
    color: rgb(184, 182, 63);

    text-align: center;
    font-family: "Playfair Display", serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: italic;
}
.gallery_container
{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin: 5.21vh 1.46vw 6.51vh 1.46vw;
}


/* Photo section */

.gallery_container .container_columns
{
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 20px;
}
.gallery_container .container_columns .column
{
    display: flex;
    flex-direction: column;
    width: 32.5%;
}
.gallery_container .container_columns .column img
{
    width: 100%;
    padding-bottom: 15px;
}


/* Video section */
.space{
    height: 2.6vh;
    margin-bottom: 2.6vh;
}
.gallery_container .container_columns_vid
{
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2vh;
    height: auto;
}
.gallery_container .container_columns_vid .column
{
    display: flex;
    flex-direction: column;
    width: 40vw;
}
.gallery_container .container_columns_vid .column iframe
{
    width: 40vw;
    height: 47vh;
    margin-bottom: 2vh;
}

@media (max-width: 1024px) {
    .gallery_container .container_columns .column,
    .gallery_container .container_columns_vid .column {
    width: 48%;
    }
}

@media (max-width: 768px) {
    .gallery_title {
        font-size: 32px;
    }

    .gallery_container .container_columns .column,
    .gallery_container .container_columns_vid .column {
        width: 100%;
    }

    .gallery_container {
        margin: 20px 10px 30px 10px;
    }
}

@media (max-width: 480px) {
    .gallery_title {
        font-size: 28px;
    }

    /* Ensure video column switches to one on small screens */
    .gallery_container .container_columns_vid .column {
        width: 100%;
    }
}


@media (max-width: 1024px) {
    .gallery_container .container_columns_vid .column {
        width: 48%;
    }
}


@media (max-width: 768px) {
    .gallery_title {
        font-size: 32px;
    }

    .gallery_container .container_columns_vid .column {
        width: 100%;
    }

    .gallery_container {
        margin: 20px 10px 30px 10px;
    }
}


@media (max-width: 480px) {
    .gallery_title {
        font-size: 28px;
    }

    .gallery_container .container_columns_vid .column {
        width: 100%;
    }
}