@charset "utf-8";
/* CSS Document */

/* Container for the image */
.image-container {
    text-align: center;
    margin: 0px;
}

/* Image in the container */
.event-image {
    max-width: 100%;
    cursor: pointer;
}
.event-image img, .image-container img { width:100%;}

/* The popup container */
.popup {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.9);
}

/* Close button */
.close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
}

.close:hover,
.close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

/* Popup image */
.popup-content {
    margin: auto;
    display: block;
    max-width: 70%;
    max-height: 80%;
}

@media only screen and (max-width: 700px) {
    .popup-content {
        max-width: 100%;
    }
}
