﻿.gallery {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.gallery-main {
    width: 100%;
    height: 360px;

    background: #000;
    border-radius: 10px;

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

.gallery-main img {
    max-width: 100%;
    max-height: 100%;
    border-radius: 10px;
}

.gallery-thumbs {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.gallery-thumb {
    width: 90px;
    cursor: pointer;
    transition: .2s;
}

.gallery-thumb:hover {
    transform: scale(1.08);
}