<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.gallery_container {
    width: 50vw;
    margin: auto;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    column-gap: 5vw;
    justify-content: center;
    row-gap: 2vw;
}


.album_div {
    width: 20vw;
    box-shadow: var(--BOX-SHADOW);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px 10px;
    gap: 10px;
    transition: box-shadow ease-in-out 150ms;
}

.album_div:hover {
    box-shadow: rgba(3, 26, 42, 0.25) 6px 8px 28px 0;
}

.album_name {
    text-align: center;
}

.album_container {
    width: 70vw;
    margin: 30px auto;
    padding: 30px 10px;
    box-shadow: var(--BOX-SHADOW);
    columns: 300px;
}

.album_figure {
        width: 300px;
        margin: auto;
        padding: 0 10px 10px 10px;
}

.album_image {
        width: auto;
        margin: auto;
        object-fit: contain;
}

.album_image:hover  {
    cursor: zoom-in;
}

.album_header-h1 {
    text-align: center;
    margin: 50px 0;
    font-family: Cardo, sans-serif;
}

    .album_header {
        margin: auto;
    }



.album_gallery-image {
    width: 15vw;
    height: 10vw;
    object-fit: cover;
}


.album_button {
    background-color: rgb(17, 17, 17);
    color: rgb(249, 249, 249);
    padding: 10px 15px;
    font-weight: bold;
    font-size: 15px;
    font-family: Inter, sans-serif;
    border-radius: 5px;
    cursor: pointer;
    width: fit-content;
    height: fit-content;
    display: block;
    margin-top: 30px;
}

.album_button:link, .album_button:visited {
    color: rgb(249, 249, 249);
}



/*  MEDIA QUERIES */

@media only screen and (max-width: 336px) {

    .gallery_container {
        width: 95vw;
        flex-direction: column;
        column-gap: 2vh;
    }

    .album_div {
        width: 90vw;
        margin: auto;
    }

    .album_gallery-image {
        width: 80vw;
        height: auto;
    }
    .album_gallery-figure {
        width: 80vw;
        height: auto;
    }

}

@media only screen and (max-width: 600px) {
    .gallery_container {
        width: 95vw;
        flex-direction: column;
        column-gap: 2vh;
    }

    .album_div {
        width: 90vw;
        margin: auto;
    }

    .album_gallery-image {
        width: 80vw;
        height: auto;
    }
    .album_gallery-figure {
        width: 80vw;
        height: auto;
    }

    .album {
        width: 95vw;
        margin: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .album_container {
        width: 95vw;
        margin: auto;
    }

    .album_figure {
        width: 75vw;
        height: auto;
    }

    .album_image {
        width: 75vw;
        height: auto;
    }

}

@media only screen and (min-width: 600px) {

    .gallery_container {
        width: 90vw;
        flex-direction: column;
        column-gap: 2vh;
    }

    .album_div {
        width: 80vw;
        margin: auto;
    }

    .album_gallery-image {
        width: 75vw;
        height: auto;
    }
    .album_gallery-figure {
        width: 75vw;
        height: auto;
    }

    .album {
        width: 95vw;
        margin: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .album_container {
        width: 95vw;
        margin: auto;
        columns: 35vw;
    }

    .album_figure {
        width: 33vw;
        height: auto;
    }

    .album_image {
        width: 33vw;
        height: auto;
    }



}

@media only screen and (min-width: 768px) {

    .gallery_container {
        width: 80vw;
        margin: 40px auto 20px auto;
        flex-direction: row;
        gap: 1vw;
        justify-content: center;

    }

    .album_div {
        width: 300px;
        margin: 10px auto;
    }

    .album_gallery-image {
        width: 250px;
        height: 200px;
        object-fit: cover;
    }

    .album_gallery-figure {
        width: 250px;
        height: auto;
    }


    .album {
        width: 95vw;
        margin: 40px auto 10px auto;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .album_container {
        width: 95vw;
        margin: auto;
        columns: 25vw;
    }

    .album_figure {
        width: 24vw;
        height: auto;
    }

    .album_image {
        width: 24vw;
        height: auto;
    }

}

@media only screen and (min-width: 992px) {
    .album {
        margin-top: 40px;
    }

}

@media only screen and (min-width: 1200px) {

    .album {
        width: 85vw;
    }



    .album_container {
        width: 80vw;
        margin: 30px auto;
        padding: 30px 10px;
        box-shadow: var(--BOX-SHADOW);
        columns: 300px;
    }

    .album_figure {
        width: 300px;
        margin: auto;
        padding: 0 10px 10px 10px;
    }

    .album_image {
        width: auto;
        margin: auto;
        object-fit: contain;
    }

}
</pre></body></html>