.event-images {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 0 10px 40px;
    align-items: center;
}

.event-images .event-image {
    height: 60vh;
}

.event-images .event-image img {
    height: 100%;
    display: block;
}

.event-image-gallery {
    display: none;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100vh;
    position: fixed;
    padding: 10px;
    background-color: rgba(0, 0, 0, .7);
    top: 0;
    left: 0;
    z-index: 10000;
}

.event-image-gallery.open {
    display: flex;
}

.event-image-gallery .close {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: white;
    height: 30px;
    width: 30px;
    position: absolute;
    top: 0;
    right: 0;
    color: black;
}

.event-image-gallery .image {
    object-fit: contain;
    width: 100%;
    height: 100%;
    margin: 20px;
}
