body {
    background-color: #dbdbdb;
    margin-bottom: 2rem;
}

h3::before {
    content: "";
    display: block;
    margin: 2rem auto;
    background-image: url("../images/line3.webp");
    background-repeat: repeat-x;
    background-size: contain;
    width: 100%;
    height: 10px;
}

.dates {
    margin-bottom: 2rem;
}

.dates p {
    max-width: 700px;
    margin: 0 auto;
}



/* Gallery and lightbox */
.my-gallery {
    max-width: 1200px;
    margin: 2rem auto;
    background: rgba(0, 0, 0, 0.1);
    padding: 10px;
}
.my-gallery > img {
    max-width: 200px;
    max-height: 150px;
    height: auto;
    overflow: hidden;
}

.my-gallery > img:hover {
    cursor: pointer;
}

#lightbox {
    display: none;
}

#lightbox.active {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.75);
    width: 100%;
    height: 100%;
}

.lightbox-arrows {
    width: 100px;
    padding: 10px;
    background: rgba(0, 0, 0, 0.5);
    position: absolute;
    bottom: 30px;
    left: 50%;
    right: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

@media screen and (max-width: 480px) {
    .lightbox-arrows {
        display: none;
    }
}

.lightbox-arrows > div > i {
    color: #6f6f6f;
}

.lightbox-arrows > div > i:hover {
    color: white;
    cursor: pointer;
}

.lightbox-dots {
    width: fit-content;
    padding: 5px;
    background: rgba(0, 0, 0, 0.5);
    position: absolute;
    bottom: 0;
    left: 50%;
    right: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
.lightbox-dot {
    width: 15px;
    height: 15px;
    margin: 3px;
    background: #6f6f6f;
    border-radius: 100%;
}
.lightbox-dot:hover {
    cursor: pointer;
    background: #8a8a8a;
}
.active-dot,
.active-dot:hover {
    background: white;
}

.lightbox-image {
    max-width: 90%;
    max-height: 90%;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}