body, html {
    height: 100%;
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #576ba1;
    color: white;
}

.container {
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
}

.logo svg {
    width: 40%;
}

.coming-soon {
    margin-top: 30px;
    font-size: 24px;
}

footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    text-align: center;
    padding-bottom: 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    padding: 10px 30px;
}

a {
    color: #FFFFFF;        /* Erbt die Schriftfarbe vom Elternelement */
    text-decoration: none; /* Entfernt die Unterstreichung */
    /* Hier können weitere Stile hinzugefügt werden, um das Standardverhalten von Links zu überschreiben */
}

a:hover {
    font-weight: bold; /* Macht den Text beim Hovern fett */
    /* Keine Änderung der Farbe oder der Unterstreichung */
}



@media screen and (min-width: 601px) {
    .footer-content {
        padding-left: 15%;
        padding-right: 15%;
    }


}

@media screen and (max-width: 600px) {
    .logo svg {
        width: 90%;
    }

    footer {
        font-size: 0.8rem;
    }
}
