*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body,html {
    padding: 0;
    margin: 0;
    overflow: hidden;

    font-family: 'Outfit', sans-serif;
}

.gallery_content {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;

    overflow-x: hidden;
    overflow-y: auto;
    flex-wrap: wrap;
    max-height: 60vmin;
}

.gallery_image_container {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;

    width: 45%;
    aspect-ratio: 1 / 1;
    border-radius: 20%;
    margin: 2.5%;

    background-color: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(15px);
    border: 0.0625rem solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 1vmin 3vmin rgba(0, 0, 0, 0.4);

    transition: ease 0.1s;
}

.gallery_image_container:hover {
    scale: 1.1;
}

.gallery_image {
    width: 100%;
    height: 100%;
    object-fit: contain;
}