/* merriweather-regular - latin_latin-ext */
@font-face {
    font-display: swap;
    font-family: 'Merriweather';
    font-style: normal;
    font-weight: 400;
    src: url('merriweather-v32-latin_latin-ext-regular.woff2') format('woff2');
}

/* merriweather-sans-800 - latin_latin-ext */
@font-face {
    font-display: swap;
    font-family: 'Merriweather Sans';
    font-style: normal;
    font-weight: 800;
    src: url('merriweather-sans-v27-latin_latin-ext-800.woff2') format('woff2');
}

/* -----------------------
Base styles
------------------------*/

html {
    height: 100%;
    max-height: 100%;
}

body {
    height: 100%;
    min-height: 100%;
    max-height: 100%;
    font-family: "Merriweather", serif;
    font-size: 1.1em;
    line-height: 1.6em;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
}

h1 {
    line-height: 1.5em;
    text-transform: uppercase;
    text-align: center;
    font-family: "Merriweather Sans", sans-serif;
    font-weight: 800;
    background-color: #EF5350;
    color: white;
}

h2 {
    line-height: 1.5em;
    text-transform: uppercase;
    text-align: center;
    font-family: "Merriweather Sans", sans-serif;
    font-weight: 800;
    background-color: #81D4FA;
    margin-top: 2em;
}

.content {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    flex: 1 0 auto;
    padding: 10px 50px;
}

.button {
    background-color: #CFCFCF;
    color: black;
    font-family: "Merriweather Sans", sans-serif;
    font-weight: 800;
    padding: 0.4em 1em;
    text-transform: uppercase;
    text-align: center;
    text-decoration: none;
    letter-spacing: 2px;
    border-radius: 99em;
    cursor: pointer;
}

.button:hover {
    background-color: #0277BD;
    color: white;
}

.buy_button {
    background-color: #81D4FA;
}

.header {
    clear: both;
    background: #BDBDBD;
    padding: 1em;
}

.footer {
    clear: both;
    text-align: center;
    color: #fff;
    background: #000;
    padding: 1em 1.25em;
}

.footer a {
    display: inline-block;
    vertical-align: middle;
    color: white;
    text-align: center;
    padding: 0 5px;
    text-decoration: none;
}

.imgshadow {
    max-height: 600px;
    max-height: 80vh;
    max-width: 70%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2em;
    display: block;
    box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.8);
    border-radius: 4px;
}

.foto {
    max-height: 600px;
    max-height: 80vh;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
    display: block;
}

figcaption {
    text-align: center;
    font-size: 0.8em;
}

::selection {
    background: #0277BD;
    color: #FFF;
}

/* -----------------------
Back To Top
------------------------*/
.backtotop {
    display: none;
    cursor: pointer;
    line-height: 1.6em;
    width: 1.5em;
    position: fixed;
    bottom: 1em;
    right: 1em;
    border-radius: 4px;
    font-size: 2em;
    text-align: center;
    background: #CFCFCF;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

.backtotop:hover {
    background-color: #0277BD;
    color: white;
}

/* -----------------------
Media Queries
------------------------*/
@media screen and (max-width: 600px) {
    .content {
        padding: 0px 20px;
    }
}

@media only screen and (max-width: 400px) {
    h1, h2 {
        font-size: 1.5em;
        letter-spacing: -1px;
        text-indent: -2px;
    }

    h3 {
        font-size: 1.2em;
    }
}

@media screen and (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}

.min hr {
    display: block;
}

@media (min-width: 500px) {
    .min hr {
        display: none;
    }
}