html, body {
    margin: 0;
    padding: 0;
}

section.intro {
    background: #D19A76;
    box-sizing: border-box;
    padding: 60px;
    text-align: center;
    color: #ffffff;
}

section.intro h1 {
    font-family: WindSong, cursive;
    font-weight: normal;
    word-spacing: 20px;
    font-size: 60px;
    line-height: 1;
    margin: 0;
    padding: 0;
}

section.intro p {
    font-family: Roboto, sans-serif;
    font-weight: 300;
    font-size: 18px;
    line-height: 1;
    margin: 30px auto 0;
    padding: 0;
    max-width: 980px;
}

section.gallery {
    padding: 60px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 980px;
    margin: 0 auto;
}

section.gallery .image-container {
    flex-basis: calc(33.333% - 10px);
    margin-bottom: 15px;
    position: relative;
    padding-top: calc(33.333% - 10px);
}

section.gallery img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

@media (max-width: 768px) {
    section.gallery .image-container {
        flex-basis: calc(50% - 7.5px);
        padding-top: calc(50% - 7.5px);
    }
}

@media (max-width: 480px) {
    section.gallery .image-container {
        flex-basis: 100%;
        padding-top: 100%;
    }
}

#load-more {
    display: block;
    margin: 20px auto;
    padding: 10px 20px;
    background-color: #D19A76;
    color: white;
    border: none;
    cursor: pointer;
}

.full-image-viewer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.viewer-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.full-image-viewer img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

.close-button {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: white;
    color: black;
    font-size: 20px;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    line-height: 1;
    z-index: 1001;
}

.close-button:hover {
    background-color: #f0f0f0;
}

/* @media (max-width: 768px) {
    .close-button {
        top: 10px;
        right: 10px;
    }
} */