/* Allgemeine Stile f체r die gesamte Seite */
body {
    font-family: 'Arial', sans-serif;
    background-color: #f7f9fc;
    color: #333;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 800px;
    margin: 30px auto;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.intro-image {
    max-width: 70%;
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 15px;
    border-radius: 10px;
}

h1 {
    font-size: 2.2em;
    margin-bottom: 10px;
    color: #6c5ce7;
    text-align: center;
    animation: flicker 3s infinite;
}

h2 {
    font-size: 1.5em;
    margin-bottom: 15px;
    color: #00b894;
}

/* Stil für "Zusätzliche Vorbereitung"-Titel */
.mission-details h3 {
    color: #ff4500; /* Beispiel: leuchtendes Orange für den Text */
    font-weight: bold;
    font-size: 1.2em;
    padding: 10px;
    background-color: #f0f8ff; /* Heller Hintergrund (leichtes Blau) */
    border-left: 5px solid #ff4500; /* Farblicher Balken links */
    border-radius: 5px; /* Abgerundete Ecken */
}

p {
    font-size: 1em;
    line-height: 1.6;
    color: #555;
}

strong {
    color: #e17055;
}

/* Flimmer-Effekt f체r den Titel */
@keyframes flicker {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.85; }
}

/* Countdown-Stil im Kasten */
.countdown-box {
    margin-top: 20px;
    padding: 15px;
    background-color: #dfe6e9;
    border-left: 5px solid #6c5ce7;
    border-radius: 8px;
    text-align: center;
}

#countdown {
    font-size: 2em;
    color: #d63031;
    margin-top: 10px;
}

/* Zitat-Stil */
.quote-container {
    margin-top: 30px;
    padding: 15px;
    background-color: #dfe6e9;
    border-left: 5px solid #6c5ce7;
    border-radius: 8px;
    text-align: center;
    font-style: italic;
}

.quote-container h3 {
    margin-bottom: 10px;
    font-size: 1.4em;
    color: #0984e3;
}

/* Zus채tzliche Bilder */
.image-section {
    display: flex;
    justify-content: space-around;
    margin-top: 20px;
}

.additional-image {
    max-width: 45%;
    border-radius: 8px;
}
