@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@300;400;500;700;900&display=swap');

* {
    font-family: 'Noto Sans KR', sans-serif;
}

.gallery-top-section {
    text-align: center;
    margin-top: 150px;
}

.section-title {
    display: block;
    font-size: 30px;
    font-weight: bold;
}

.section-title-des {
    color: darkgray;
}


.gallery-content-section {
    width: 1080px;
    margin: 100px auto;
    display: block;
    text-align: center;
    min-height: 650px;
}

.gallery-wrapper {
    display: flex;
    min-height: 650px;
    flex-wrap: wrap;
}

.gallery-ready {
    height: 650px;
    color: gray;
    padding-top: 200px;
}

.gallery-ready i {
    font-size: 50px;
}

.gal-img {
    width: 100%;
    aspect-ratio: 1/1;
    transition: all 0.2s linear;
    object-fit: cover;
}

.img-wrapper {
    width: 320px;
    aspect-ratio: 1/1;
    margin: 15px 15px;
    overflow: hidden;
}

.img-wrapper:hover .gal-img {
    transform: scale(1.2);
}

.more-btn {
    margin-top: 3rem;
    margin-left: auto;
    margin-right: auto;
    border: none;
    color: white;
    padding: 3px 1.5rem;
}

.more-btn:hover {
    filter: brightness(0.9);
}