main p {
    margin-bottom: 5%;
}

div.overlay {
    display: none;
}

div.overlay img {
    width: 100%;
}

button#close {
    display: block;
    font-family: "Tinos", 'Times New Roman', Times, serif;
    margin: 2em auto;
    padding: 2em;
    color: #F4ECD6;
    background-color: #724040;
    text-decoration: underline;
    text-decoration-color: #F4ECD6;
    border: none;
    box-shadow: 3px 3px #472925;
}

button#close:hover {
    text-decoration: none;
}

/* image carousel styling */

div#imageCarousel {
    display: grid;
    grid-template-columns: 1fr 8fr 1fr;
    padding: 3% 0% 10% 0%;
}

div#imageCarousel > * {
    background-color: #724040;
    width: 100%;
}

button.carouselButtons {
    color: #F4ECD6;
    font-weight: bold;
    font-size: x-large;
    background-color: #724040;
    border: none;
}

button.carouselButtons:hover, button.carouselButtons:active {
    background-color: #472925;
}

/* photo gallery styling */

#photoGallery {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 15px;
}

.galleryPhoto {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.galleryPhoto:hover {
    cursor: pointer;
}

@media (max-width: 1000px) {
    #photoGallery {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }
}