body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

header {
    text-align: center;
}

.logo {
    max-width: 100%;
}

.contact-info{
	text-align: center;
	margin: 60px auto;
}

/* Media Queries */
@media (max-width: 768px) {
    /* Anpassungen für kleinere Bildschirme */
    body {
        padding: 20px;
    }

    h1 {
        font-size: 2rem;
    }
}
