/* alexandria-regular - latin */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Alexandria';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/alexandria-v3-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

* {
    font-size: 18px;
}

:root {
    --gradient11: linear-gradient(90deg, rgba(131,58,180,0.5) 0%, rgba(253,29,29,0.5) 50%, rgba(252,176,69,0.5) 100%);
    --gradient12: linear-gradient(90deg, rgba(138,81,176,0.4) 0%, rgba(255,83,83,0.4) 50%, rgba(250,194,114,0.4) 100%);
    --gradient21: linear-gradient(270deg, rgba(131,58,180,0.5) 0%, rgba(253,29,29,0.5) 50%, rgba(252,176,69,0.5) 100%);
    --gradient22: linear-gradient(270deg, rgba(138,81,176,0.4) 0%, rgba(255,83,83,0.4) 50%, rgba(250,194,114,0.4) 100%);
    --gradient3: linear-gradient(90deg, rgba(131,58,180,0.7) 0%, rgba(253,29,29,0.7) 50%, rgba(252,176,69,0.7) 100%);
}

/* Bereiche */

body {
    background-image: url(../img/sehnsucht.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    display: grid;
    margin: 3rem;
    font-family: 'Alexandria', sans-serif;
}

header {
    margin-bottom: 1rem;
    padding: 0.2rem;
    background: var(--gradient12);
    border-radius: 20px;
}

header section {
    background: var(--gradient11);
    backdrop-filter: blur(6.1px);
    border-radius: 20px;
    padding: 1rem 3rem;
    display: flex;
    justify-content: space-between;
}

nav ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

a {
    text-decoration: none;
    color: white;
}

main {
    padding: 0.2rem;
    background: var(--gradient12);
    border-radius: 20px;
}

img {
    max-width: 100%;
}

footer {
    display: grid;
    padding: 0.2rem;
    background: var(--gradient12);
    backdrop-filter: blur(6.1px);
    border-radius: 20px;
    margin-top: 1rem;
}

footer section {
    background-color: gray;
    text-align: center;
    background: var(--gradient11);
    backdrop-filter: blur(6.1px);
    padding: 1rem; 
    border-radius: 20px;
}

footer ul {
    margin: 0;
    padding: 0;
}

footer li {
    list-style: none;
}

/* Klassen */
.mainInner {
    background: var(--gradient11);
    backdrop-filter: blur(6.1px);
    padding: 3rem; 
    border-radius: 20px;
}

.checkH {
    display: flex;
}

.imgWrapper {
    display: flex;
    flex-direction: column;
    justify-items: center;
}

.imgWrapper {
    padding: 1rem;
    background-color: rgba(255, 166, 0, 0.664);
    border: solid 1px  rgba(255, 166, 0, 0.37);
    border-radius: 5px;
}

.gradient21 {
    background: var(--gradient21);
}

.gradient22 {
    background: var(--gradient22);
}

/* IDs */
#logo {
    max-width: 10rem;
}

#logoWrapper {
    width: 10rem;
}

#previewWrapperOuter {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center;
}

#previewWrapperInner {
    padding: 1rem;
    background-color: orange;
    max-width: 80%;
    backdrop-filter: blur(6.1px);
    display: flex;
    justify-content: center;
}

#galleryWrapper {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 3rem;
}

#galleryWrapper div {
    text-align: center;
}

#galleryWrapper img {
    padding-bottom: 0.5rem;
}

#check,#label-check{
    display: none;
} 

#toTop {
    display: none;
    position: fixed;
    bottom: 100px;
    right: 100px;
    z-index: 99;
    border: none;
    background: var(--gradient3);
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 5px;
}

#mysteryButton {
    border-radius: 6px;
    background: var(--gradient11);
    border: none;
    margin-top: 1rem;
    color: white;
}

/* Typo */
h1 {
    font-size: 3rem;
    margin: 0;
    padding: 3rem;
}

h2{
    font-size: 2rem;
}

h3{
    font-size: 1.5rem;
}