@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@600&display=swap');

body {
    background-color: #5F22E8; /* Lila Hintergrundfarbe aus dem Logo */
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    text-align: center;
    flex-direction: column;
}

.content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.logo-container img {
    max-width: 80%;
    height: auto;
}

/* Standardmäßig das mobile Logo ausblenden */
.mobile-logo {
    display: none;
}

/* E-Mail-Stil */
.email {
    color: white;
    font-size: 0.7em;
    margin-top: 15px;
    font-family: 'Poppins', sans-serif;
    text-align: center;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Auf mobilen Geräten das Desktop-Logo ausblenden und das mobile Logo anzeigen */
@media (max-width: 768px) {
    .desktop-logo {
        display: none;
    }
    .mobile-logo {
        display: block;
        max-width: 60%;
    }
}
