.gallery-text{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}
.gallery-pics{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.row{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding: 1rem;
}
.row>img{
    width: 32%;
    cursor: pointer;
}

.gallery-modal{
    display: none;
}
.gallery-modal-active{
    position: fixed;
    z-index: 9999999;
    background-color: rgba(0, 0, 0, 0.859);
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.close-button{
    width: 100%;
    height: 10%;
    display: flex;
    justify-content: end;
    align-items: center;
}
.close-button button{
    width: 200px;
    font-size: 40px;
    background-color: #ffffff00;
    border: none;
    outline: none;
}
.imageModal{
    width: 100%;
    height: 90%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.imageModal img{
    width: 60%;
}



@media (max-width: 800px) {
    .row{
        flex-direction: column;
    }
    .row>img{
        width: 100%;
        cursor: pointer;
    }
    .gallery-modal{
        display: none;
    }
    .gallery-modal-active{
        position: fixed;
        z-index: 9999999;
        background-color: rgba(0, 0, 0, 0.859);
        width: 100%;
        height: 100vh;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }
    .close-button{
        width: 100%;
        height: 10%;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .imageModal{
        width: 100%;
        height: 90%;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .imageModal img{
        width: 95%;
    }
}