body {
    background-color: black;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.animation-container {
    text-align: center;
}

.keyboard-input {
    font-size: 62px;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: bold;
    color: white;
    white-space: nowrap;
    overflow: hidden;
    border-right: 3px solid white;
    animation: typing 2s steps(24, end), blink-caret 0.5s step-end infinite;
}

@keyframes typing {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

@keyframes blink-caret {
    from, to {
        border-color: transparent;
    }
    50% {
        border-color: white;
    }
}

/* Media Query für kleinere Bildschirme (z. B. Tablets) */
@media (max-width: 768px) {
    .keyboard-input {
        font-size: 36px; /* Schriftgröße für kleinere Bildschirme anpassen */
    }
}

/* Media Query für noch kleinere Bildschirme (z. B. Handys) */
@media (max-width: 480px) {
    .keyboard-input {
        font-size: 24px; /* Schriftgröße für noch kleinere Bildschirme anpassen */
    }
}
