@font-face {
    font-family: "Quicksand";
    src: url("../font/Quicksand-Regular.ttf");
    font-display: swap;
}

@font-face {
    font-family: "Quicksand";
    src: url("../font/Quicksand-Bold.ttf");
    font-weight: bold;
    font-display: swap;
}

img {
    max-width: 100%;
}


html {
    font-family: "Quicksand", "DejaVu Sans", sans-serif;
    scroll-behavior: smooth;
    font-size: 20px;
}

body {
    margin: 0;
    background-color: black;
    color: #ffffff;
    text-align: center;
}
a {
    color: #ffffff;
    font-weight: bold;
    transition: all 200ms;
}

a:hover {
    /*text-shadow: 0 0 2px #ffd2a7;*/
    transform: scale(110%);
}
header > a,
.acc figure > a {
    display:block;
}

header > a:hover,
.acc figure > a:hover {
	transform: none;
}

.subtitle {
    font-size: 1.4em;
    color: #6dc3c3;
}

.sticky-bar {
    background-color: black;
    padding: 1em;
    text-align: center;
    border-top: solid 2px #6dc3c3;
    border-bottom: solid 2px #ffd2a7;
}

@media screen and (min-width: 900px) {
    .sticky-bar {
        position: sticky;
        top: 0;
    }
}

.tabs {
    list-style-type: none;
    padding: 0;
    display: flex;
    flex-flow: column;
    justify-content: center;
}

.tabs a {
    display: block;
    text-align: center;
    padding: .5em;
    margin: 0 1ch;
    text-transform: uppercase;
    text-decoration: none;
}

h2 a {
    display: block;
    text-align: center;
    padding: 0;
    margin: 0 1ch;
    text-transform: uppercase;
    color: #ffd2a7;
    text-decoration: underline;
}
h2 a:hover {
    color: #ffffff;
    /*text-shadow: 0 0 2px #ffd2a7;*/
    transform: scale(110%);
    text-decoration: none;

}

.drop-down {
    position: relative;
}

.drop-down ul {
    background-color: black;
    display: none;
    list-style-type: none;
    padding: 0;
    position: absolute;
    left: 0;
    right: 0;
}

.drop-down > a {
    cursor: pointer;
}

.download {
    color: #ffd2a7;
}

.blank {
    color: #6dc3c3;
}

main {
    margin: 0 auto;
    max-width: 800px;
}

main img {
    max-height: 200px;
    max-width: 200px;
    border-radius: 10px;
}
main figure img {
    max-height: initial;
    max-width: 100%;
    border-radius: initial;
}

main.crea img {
	max-width: 100%;
	max-height: initial;
	border-radius: 10px;
}

main.bier img {
	padding-top: 10px;
}
    
.vid {
	max-width: 100%;
	max-height: 100%;
	display: block;
	margin: 0;
}

footer {
    border-top: solid 2px #6dc3c3;
    margin-top: 20px;
}

.partner-logos {
    display: flex;
    flex-flow: row wrap;
    list-style: none;
    padding: 0;
    justify-content: center;
    align-items: center;
}

.partner-logos img {
    display: block;
    max-height: 3em;
    max-width: 16ch;
    margin: 0 1ch;
}
.cookies {
    text-align: center;
    font-size: smaller;
}

@media screen and (min-width: 760px) {
    .tabs {
        flex-flow: row wrap;
    }
}