.wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    padding: 6rem 1rem;
    row-gap: 2rem;

    position: relative;

}

.images {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    width: 100%;
    height: 100%;

    row-gap: 1rem;
    column-gap: 1rem;

}

.images>img {
    width: 100%;
    height: auto;
    cursor: pointer;
}

@media (max-width: 550px) {
    .images {
        grid-template-columns: 1fr 1fr;
    }
}

/*for slick slider*/
.fullSizeImg {
    position: absolute;
    width: 100%;
    height: 100vh;
    top: 0;

    display: flex;
    justify-content: center;
    align-items: center;

    background-color: rgba(0, 0, 0, 0.4);

    z-index: 200;

    display: none;
}

.fullSizeImg>img {
    width: 500px;
    height: 600px;
    padding: 2rem 2rem;

    position: absolute;
}

#currentImg{
    z-index: 5;
}

.fullSizeImg > button{
    position: absolute;
    border: none;
    background-color: transparent;

    height: 4rem;
    width: 4rem;

    cursor: pointer;
}

.fullSizeImg > button > box-icon{
    height: 100%;
    width: 100%;
}

#prevButton{
    left: 2rem;
}

#nextButton{
    right: 2rem;
}

#closeFullSize{
    top: 1rem;
    right: 1rem;
}

@media (max-width: 620px) {
    .fullSizeImg>img {
        width: 300px;
        height: 400px;
        padding: 1rem 2rem;
    }

    .fullSizeImg > button{
        height: 2rem;
        width: 3rem;
    }

    #prevButton{
        left: 0rem;
    }
    
    #nextButton{
        right: 0rem;
    }
}