﻿/* :root{
    --main:#b41e22;
} */

.gallery {
    text-align:center;
    display: flex;
    flex-wrap: wrap;
    align-content: space-between;
    padding: 0 1rem;
}
.gallery.scrollable{
    overflow: scroll;
    padding-bottom: 1rem;
}
.gallery .icon {
    width: 80%;
    aspect-ratio: 1;
    border: 2px solid var(--main);
    margin:1rem auto;
}
.gallery .icon img {
    min-width: 100%;
    height: 100%;
    width: auto !important;
    cursor:pointer;
}

.gallery .scroll{
    display: flex;
    align-items: center;
    gap: 1rem;
}

.galBackground {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0px;
    left: 0px;
    background-color: rgba(0,0,0,0.4);
    z-index: 99;
    text-align:center
}
    .galBackground img {
        max-width:100%;
        max-height: 90vh;
    }
    .galBackground .wrap {
        position: relative;
        padding: 3rem;
        text-align: center;
        display: inline-block;
    }
    .galBackground .closeBtn {
        position: absolute;
        width: 40px;
        height: 40px;
        top: 32px;
        right: 32px;
        background: rgba(0,0,0,0.6);
        border-radius: 50%;
        color: white;
        text-align: center;
        line-height: 44px;
        font-size: 40px;
        border: 2px solid white;
        cursor: pointer;
        z-index: 99;
    }