body {
    background-color: black;
    margin: 0;
    font-size: 20px;
    color: gold;
    font-family: 'Libre Baskerville', serif;
}

header {
    background-color: maroon;
    padding: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
}

h1 {
    font-size: 64px;
    font-family: cursive;
    padding-left: 16px;
}

h2 {
    font-size: 30px;
    font-family: 'Montserrat', sans-serif;
}

main {
    margin: 24px;
    text-align: center;
}

.gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

footer {
    background-color: maroon;
    padding: 24px;
    text-align: center;
}
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
}

.overlay img {
    max-width: 90%;
    max-height: 90%;
}