html {
    height: 100%;
}


body {
    background-image: -webkit-linear-gradient(45deg,
            hsl(240deg 72% 21%) 1%,
            hsl(225deg 53% 33%) 25%,
            hsl(211deg 50% 43%) 35%,
            hsl(200deg 60% 53%) 42%,
            hsl(192deg 93% 62%) 49%,
            hsl(198deg 85% 59%) 54%,
            hsl(203deg 78% 56%) 59%,
            hsl(207deg 73% 52%) 64%,
            hsl(210deg 83% 45%) 68%,
            hsl(219deg 72% 49%) 72%,
            hsl(227deg 69% 49%) 76%,
            hsl(235deg 70% 49%) 80%,
            hsl(243deg 84% 45%) 84%,
            hsl(253deg 85% 46%) 88%,
            hsl(260deg 86% 47%) 92%,
            hsl(265deg 87% 48%) 96%,
            hsl(269deg 88% 49%) 100%);
    background-size: cover;
    min-height: 100%;
    background-attachment: fixed;
}

#myImg {
    border-radius: 0px;
    cursor: pointer;
    transition: 0.3s;
}

#myImg:hover {
    opacity: 0.7;
}

.modal {
    display: none;
    /* Hidden by default */
    position: fixed;
    /* Stay in place */
    z-index: 6;
    /* Sit on top */
    padding-top: 100px;
    /* Location of the box */
    left: 0;
    top: 0;
    width: 100%;
    /* Full width */
    height: 100%;
    /* Full height */
    overflow: auto;
    /* Enable scroll if needed */
    background-color: rgb(0, 0, 0);
    /* Fallback color */
    background-color: rgba(0, 0, 0, 0.9);
    /* Black w/ opacity */
    user-select: none;
}

.modal-content {
    margin: auto;
    display: block;
    height: 90%;
    max-width: 700px;
}

#caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: #ccc;
    padding: 10px 0;
    height: 150px;
}

.modal-content,
#caption {
    animation-name: zoom;
    animation-duration: 0.6s;
}

@keyframes zoom {
    from {
        transform: scale(0)
    }

    to {
        transform: scale(1)
    }
}

.close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
}

.close:hover,
.close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

@media only screen and (max-width: 700px) {
    .modal-content {
        width: 100%;
    }
}

/* CUSTOM1 */
* {
    box-sizing: border-box;
}

.row-pg {
    display: -ms-flexbox;
    /* IE10 */
    display: flex;
    -ms-flex-wrap: wrap;
    /* IE10 */
    flex-wrap: wrap;
    padding: 0 4px;
    margin-left: auto;
    padding-left: 32px;
    padding-right: 32px;
}

/* Create four equal columns that sits next to each other */
.column-pg {
    -ms-flex: 25%;
    /* IE10 */
    flex: 25%;
    max-width: 25%;
    padding: 0 4px;
    flex-direction: column;
    column-gap: 25px;
}

.column img {
    margin-top: 8px;
    vertical-align: middle;
    width: 100%;
}

/* Custom */
@media screen and (max-width: 600px) {
    .enap-gallery-img {
        padding-left: 5px;
        padding-right: 5px;
        padding-top: 5px;
        padding-bottom: 5px;
    }
}

/* Responsive layout - makes a two column-layout instead of four columns */
@media screen and (max-width: 800px) {
    .column-pg {
        -ms-flex: 50%;
        flex: 50%;
        max-width: 50%;
        column-gap: 5px;
        flex-direction: column;
    }

    .row-pg {
        padding-left: 0px;
        padding-right: 0px;
    }
}

/* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
    .column-pg {
        -ms-flex: 100%;
        flex: 100%;
        max-width: 100%;
        column-gap: 10px;
        flex-direction: column;
    }

    .row-pg {
        padding-left: 15px;
        padding-right: 15px;
    }
}

@media print {

    html,
    body {
        display: none;
        /* hide whole page */
    }
}