/* style.css */
body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #4861C5; /* Hintergrundfarbe der Seite */
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh; /* Mindesthöhe des Viewports */
    overflow: hidden; /* Verhindert Scrollbalken, wenn der Container einfährt */
}

.container {
    background-color: #A9BFFD; /* Hellere Farbe für den Container */
    color: #333;
    padding: 40px;
    border-radius: 15px; /* Abgerundete Ecken */
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3); /* Schatten */
    text-align: center;
    max-width: 500px;
    width: 90%;
    opacity: 0; /* Startet unsichtbar für die Animation */
    transform: translateY(100vh); /* Startet außerhalb des Bildschirms unten */
    animation: slideIn 1s forwards ease-out; /* Animation */
}

.container h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #2F4F9D; /* Dunklerer Ton für die Überschrift */
}

.container p {
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 10px;
}

/* Keyframe-Animation für das Hereinfahren */
@keyframes slideIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}