/* Import der Schriftarten */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    font-family: 'Roboto', sans-serif; /* Geänderte Schriftart für den gesamten Body */
    background-color: #ffa94a;
    animation: colorShift 20s infinite alternate;
}
/* Keyframes für Farbänderung */
@keyframes colorShift {
    0% {
        background-color: #ffffff;
    }
    50% {
        background-color: #ffffff;
    }
    100% {
        background-color: #ffffff;
    }
}
main {
    display: flex;
    flex-grow: 1;
    font-family: 'Roboto', sans-serif;
}

footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0px;
    
    font-size: 0.8rem;
    color: white;
    padding: 5px;
    font-family: 'Roboto', sans-serif;
}

h2, .input-container label, .input-container input {
    font-family: 'Roboto', sans-serif;
}

/* Anpassung der Schriftart-Klassennamen */
.roboto-regular {
    font-family: "Roboto", sans-serif;
    font-weight: 400;
}

.roboto-bold {
    font-family: "Roboto", sans-serif;
    font-weight: 700;
}
