* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    font-family: Arial, sans-serif;
    background-color: black; /* Hintergrundfarbe auf schwarz */
    color: white; /* Standard Schriftfarbe auf weiß */
}

.container {
    text-align: center;
}

.logo {
    width: 190px;
    height: 199px;
    max-width: 100%;
    height: auto; /* sorgt für responsive Anpassung */
}

.text {
    font-size: 20px;
    color: white; /* Schriftfarbe auf weiß */
    margin-top: 15px; /* Abstand zum Logo */
}

.contact {
    font-size: 20px;
    color: white; /* Schriftfarbe auf weiß */
    margin-top: 10px; /* Abstand zum vorherigen Text */
}
