@font-face {
    font-family: "Testschrift";
    src: url("Testschrift.otf") format("opentype");
}

html, body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    overflow-x: hidden;

    background: #000; 
    overscroll-behavior: none;
}


body {
    margin: 0;
    padding: 0;
    font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;

    background: radial-gradient(#000000);
    color: #e5e7eb;

    min-height: 100vh;
}


#ueberschrift {
    text-align: center;
    font-family: "Testschrift", sans-serif;

    font-size: 50px;
    margin-top: 30px;

    color: #d4af37; /* Gold */
    letter-spacing: 1px;

    text-shadow: 0 0 12px rgba(212, 175, 55, 0.25);
}


.untertext {
    text-align: center;
    margin-top: 8px;
    font-size: 0.95rem;
    color: #9ca3af;
}


#timerfield {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;

    max-width: 600px;
    margin: 40px auto;
    padding: 0 15px;
}


.timer-spalte {
    display: flex;
    flex-direction: column;
    align-items: center;
}


.boxueberschrift {
    margin-bottom: 10px;
    font-weight: 600;
    letter-spacing: 1px;

    color: #16a34a; /* Grün */
}


.box {
    width: 100%;
    max-width: 120px;
    aspect-ratio: 1/1;

    background: linear-gradient(145deg, #0a0a0a, #121212);
    border: 1px solid rgba(212, 175, 55, 0.35);

    border-radius: 18px;

    display: flex;
    justify-content: center;
    align-items: center;

    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: bold;

    color: #d4af37; 

    box-shadow:
        0 0 10px rgba(212, 175, 55, 0.15),
        0 10px 25px rgba(0, 0, 0, 0.7);

    transition: transform 0.2s ease, box-shadow 0.2s ease, border 0.2s ease;
}

#wappen {
    width: 130px;
    display: block;
    margin: 30px auto;

    filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.25));
}


.spinning {
    animation: float 0.25s infinite alternate ease-in-out;
}

@keyframes float {
    from { transform: translateY(-2px); }
    to { transform: translateY(2px); }
}

