/* Standard CSS Template */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    min-height: 100vh;
    background: linear-gradient(180deg, #ffffff 30%, #a0caa7 100%);

    font-size: 25px;
}

body {
    min-height: 100vh;
    font-family: Didot;
    font-size: 25px;
    color: #000000;
    line-height: 1.6;
    text-align: center;
}
body::before {
    font-size: 25px;
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    background: url("euka.png");
    background-size: cover;
    opacity: 0.3;
}

a {
    color: #0077cc;
    text-decoration: none;
    transition: color 0.2s;
}

a:hover {
    color: #005fa3;
    text-decoration: underline;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-bottom: 1rem;
    font-weight: 600;
    z-index: 2;
}

p {
    margin-bottom: 1rem;
}

ul,
ol {
    margin-bottom: 1rem;
    padding-left: 2rem;
}

button,
input,
select,
textarea {
    font-family: inherit;
    font-size: 1rem;
    margin: 0.5rem 0;
}

iframe {
    width: 80vw;
    height: 40vh;
    border: 0;
    display: block;
    margin: 0 auto 2rem auto;
}

.countdown-row {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}
.countdown-block {
    text-align: center;
}
.countdown-zahl {
    font-size: 2rem;
    font-weight: bold;
    display: block;
}
.countdown-label {
    font-size: 1rem;
    color: #000000;
}
img {
    width: 600px;
}

@media screen and (max-width: 600px) {
    h1, h2{
        font-size: 1.8rem;
    }
    body {
        font-size: 22px;
    }
    .countdown-zahl {
        font-size: 2.0rem;
    }
    .countdown-label {
        font-size: 0.8rem;
    }
    img {
        width: 100%;
        height: auto;
    }
}

.schnörkel {
    font-family: "Great Vibes", cursive;
    font-size: 60px;
}

#response{
    margin-bottom: 2rem;
    font-family: Didot;
    font-size: 30px;
}