body {
    font-size: 18px;
    font-family: sans-serif;
    color: #e8e8e8;
    background: #111;
    padding: 0 0;
    text-align: center;
}

h1 {
    margin-bottom: 0px;
}

img.thumb {
    width: 500px;
    height: 500px;
    object-fit: cover;
}

@media (max-width: 501px) {
    img.thumb {
        width: 98vw;
        height: 98vw;
    }
}

img.hero {
    width: 98vw;
    max-width: 1000px;
    /* height: 1280px; */
    object-fit: cover;
}

.gallery-img {
    text-decoration: none;
}

a {
    color: #e8e8e8;
}

.gallery-link {
    color: rgb(25, 25, 25);
    text-decoration: none;
    background: #bebebe;
    transition: background-color 100ms linear;
    padding: 10px 20px;
    border-radius: 3px;
    cursor: pointer;
    display: inline-block;
    white-space: nowrap;
    margin-bottom: 10px;
}

.gallery-link:hover {
    background: #e8e8e8;
    transition: background-color 100ms linear;
}

.gallery-link:active {
    background: #ffffff;
    transition: background-color 100ms linear;
}

.gallery-link.curr-gallery {
    background: #f27370;
    pointer-events: none;
}
