/* Hintergrundstil der gesamten Seite */
body {
    font-family: Arial, sans-serif;
    background-color: #121212;
    color: white;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

/* Stil für die Gedicht-Box */
.easter-egg-content {
    background-color: rgba(18, 18, 18, 0.9);
    color: white;
    padding: 30px;
    margin: 0; /* Keine externe Margin mehr */
    width: 80%; /* Anpassbare Breite */
    max-width: 600px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 128, 255, 0.5);
    text-align: center; /* Text im Gedicht wird mittig angezeigt */
}

/* Gedichtstil */
.easter-egg-content pre {
    font-family: 'Courier New', Courier, monospace;
    white-space: pre-wrap;
    font-size: 12px;
    line-height: 1.6;

}

/* Überschriften */
.easter-egg-content h1 {
    color: #0080FF;
    margin-bottom: 10px;
}

.easter-egg-content h2 {
    margin-bottom: 20px;
    color: #00bfff;
}

/* Zurück zum Ticket Button */
.back-button {
    display: block;
    text-align: center;
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #0080FF;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

/* Hover-Effekt für den Button */
.back-button:hover {
    background-color: #0066CC;
}
