/* latin-ext */
@font-face {
    font-family: 'Cuprum';
    font-style: normal;
    font-weight: 400;
    src: url(cuprum-latin-ext.woff2) format('woff2');
    unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* latin */
@font-face {
    font-family: 'Cuprum';
    font-style: normal;
    font-weight: 400;
    src: url(cuprum-latin.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
  
:root {
    --gold: #fdd49b;
    --shade: #381e0b80;
    --shade2: #381e0ba0;
}

body {
    font-family: "Cuprum","Trebuchet MS",Trebuchet,Verdana,Sans-serif;
    background: url(backgrounds/body-bg.gif);
    background-attachment: fixed;
    overscroll-behavior: none;
    overflow: auto;
    margin: 0;
    display: flex;
    justify-content: center;
    box-sizing: border-box;
    position: relative;
    transition: 200ms;
}

a {
    fill: var(--gold);
    color: var(--gold);
    text-decoration: underline;
    border-color: var(--gold);
}

    a:hover {
        fill: #ffffff;
        color: #ffffff;
        text-decoration: underline;
        border-color: #ffffff;
    }

.maxwidth910px {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    box-sizing: border-box;
    height: fit-content;
    max-width: 910px;
    width: 910px;
    margin: 20px 10px;
    color: var(--gold);
    font-size: 22px;
    letter-spacing: 3px;
    text-transform: none;
    text-align: center;
}

@media only screen and (min-resolution: 150dpi) {
    .maxwidth910px {
        max-width: 95vw;
        font-size: 4vw;
    }

    .navigation > * {
        font-size: 3vw !important;
    }
}

.maxwidth910px > div {
    box-sizing: border-box;
    width: 100%;
    margin-bottom: 10px;
    /*box-shadow: 0 0 10px black;
    border-radius: 5px;*/
    border: 1px solid var(--gold);
    overflow: hidden;
}

.content {
    background: var(--shade);
    padding: 0.5em;
    transition: 200ms;
}

    .content:hover {
        background: var(--shade2);
        text-shadow: 1px 1px 1px black;
    }

.navigation {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    text-shadow: 1px 1px 1px black;
    background: var(--shade);
    width: 100%;
    padding: 5px;
}

    .navigation > div {
        flex: 0 0 25%;
        box-sizing: border-box;
        padding: 1px;
        color: var(--gold);
        fill: var(--gold);
        position: relative;
        transition: 200ms;
    }

    @media screen and (max-width: 480px) {
        .navigation > div {
            flex: 0 0 45%;
            margin-bottom: 10px;
        }
    }

    .navigation > div:hover {
            background: #381e0b60;
            /*box-shadow: 0 0 10px var(--gold);*/
            color: #ffffff;
            fill: #ffffff;
            border-bottom-color: #381e0b60;
            cursor: pointer;
        }

        .navigation > div img {
            filter: contrast(1.2) brightness(0.9) sepia(0.4) saturate(1.5);
            border: 1px solid #381e0b60;
            box-shadow: 0 0 5px #381e0b60;
            box-sizing: border-box;
            transition: 200ms;
            width: 90%;
        }

        .navigation > div:hover img {
            /*filter: none;*/
        }

        .navigation > div div {
            display: flex;
            justify-content: center;
            margin-top: 0px;
            transition: 200ms;
            overflow-wrap: anywhere;
        }

        #main_image {
            flex: 1 1 50vH;
            min-height: 300px;
            background: url(3.15.gallery/big/img_20181005_180639~2.jpg);
            background-position-x: 70%;
            background-position-y: 75%;
            background-size: cover;
        }

        @media screen and (max-width: 480px) {
            #main_image {
                max-height: 300px;
            }
        }

.image_with_text_overlay {
    position: relative;
}

.text_overlay_bottom,
.text_overlay_top {
    display: block;
    position: absolute;
    backdrop-filter: blur(2px);
    background-color: #00000090;
    text-decoration: none;
    padding: 5px 10px;
    left: 5px;
    right: 5px;
}

    .text_overlay_bottom:hover,
    .text_overlay_top:hover {
        text-decoration: none;
        background-color: #000000c0;
    }

.text_overlay_bottom {
    text-align: right;
    bottom: 5px;
}

.text_overlay_top {
    text-align: left;
    top: 5px;
}

div.buyersguide {
    position: relative;
    overflow: hidden;
    height: 440px;
    width: 869px;
    margin: 0;
    border-radius: 2px;
}

    div.buyersguide a {
        position: absolute;
        display: block;
        height: 440px;
        box-shadow: 0px 0px 15px black;
    }

table {
    font-size: smaller;
    border-collapse: collapse;
}

.scrollup {
    box-sizing: border-box;
    bottom: 20px;
    right: -10px;
    line-height: 40px;
    border-radius: 10px;
    background-color: var(--shade2);
    position: fixed;
    padding: 0 10px;
    cursor: pointer;
    z-index: 10;
    text-align: right;
    color: var(--gold);
    font-family: "Trebuchet MS",Trebuchet,"Cuprum",Verdana,Sans-serif;
    transition: opacity 1s;
}

    .scrollup:hover {
        color: white;
    }

@media only screen and (min-resolution: 150dpi) {
    .scrollup {
        zoom: 2;
    }
}
