/* Allgemeine Stileinstellungen */
body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #ffafbd, #ffc3a0);
    color: #333;
}

/* Container für den Inhalt */
.container {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: rgba(255, 255, 255, 0.8);
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Inhalt der Nachricht */
.content h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #333;
}

.content p {
    font-size: 1.2em;
    margin-bottom: 30px;
}

/* Animierter Ladeindikator */
.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #ccc;
    border-top: 4px solid #ff6f61;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* Keyframes für die Animation des Spinners */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
