#fadeoutBG {
    display: none;
    position: fixed;
    width: 100vw;
    height: 100vh;
    background-color: white;
    opacity: .8;
    z-index: 5;
}

#popup {
    display: none;
    left: 10vw;
    top: 10vh;
    position: fixed;
    background-image: url(/images/test1.jpg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: 80vw;
    height: 80vh;
    z-index: 10;
}

#subgallery {
    width: 100%;
    text-align: center;
    padding-left: 0;
    white-space: nowrap;
    overflow: hidden;
}

#subgallery li {
    display: inline;
}

#subgallery a {
    text-decoration: none;
    color: black;
    transition: color .3s;
}

#subgallery a:visited {
    color: black;
}

#subgallery a:hover {
    color: white;
}

.container {
    height: auto;
    text-align: center;
}

.container img {
    display: inline-block;
    margin: auto;
    max-width: 30%;
    max-height: 200px;
    margin: 1%;
    border: 3px #261810 solid;
    box-shadow: 3px 3px 3px rgba(0,0,0,.4);
}

.container img:hover {
    cursor: pointer;
}

@media (max-width: 740px) {
    .container img {
        max-width: 47%;
        max-height: 23%;
    }
}

@media (max-width: 400px) {
    .container img {
        width: 80%;
        max-width: 100%;
        max-height: 50%;
    }
}