@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');

/* Allgemeine Einstellungen */
body {
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
    background: linear-gradient(120deg, #003366, #990000);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
}

.container {
    text-align: center;
}

.logo h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #FF6666;
    text-shadow: 2px 2px #003366;
}

.message h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.message p {
    font-size: 1.2rem;
    margin: 0.5rem 0;
    color: #FFCCCB;
    font-style: italic;
}

.animation {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.circle {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #FF6666;
    animation: bounce 1.5s infinite ease-in-out;
}

.circle:nth-child(2) {
    animation-delay: 0.3s;
}

.circle:nth-child(3) {
    animation-delay: 0.6s;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

footer {
    position: absolute;
    bottom: 10px;
    width: 100%;
    text-align: center;
}

.impressum-link, .datenschutz-link, .back-link {
    color: #FF6666;
    text-decoration: none;
    font-weight: bold;
}

.impressum-link:hover, .datenschutz-link:hover, .back-link:hover {
    text-decoration: underline;
}
