/* Import Montserrat Alternates font from Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat+Alternates:wght@400;700&display=swap');

body {
    font-family: 'Montserrat Alternates', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    visibility: hidden; /* Seite bleibt unsichtbar, bis die Schriftart geladen ist */
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 800px;
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
}

.text-container {
    text-align: center; /* Zentriert den Textinhalt */
}

.logo-title {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.logo-title img {
    width: 50px;
    height: 50px;
    margin-right: 5px; /* Geringer Abstand zwischen Logo und Text */
    margin-left: -5px; /* Negative Margin, um den weißen Rand auszugleichen */
}

.logo-title h1 {
    font-size: 24px;
    font-weight: bold;
    margin: 0;
}

.contact-info p {
    line-height: 1.2;
    margin: 0;
}

.contact-info p:first-child {
    margin-bottom: 10px;
}
