body, html {
    margin: 0;
    padding: 0;
    height: 100%;
}

header {
    background-color: #ffffff;
    padding: 20px;
    text-align: center;
}

body {
    font-family: Arial, sans-serif;
}

body {
    font-family: "Nunito", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    background-color: #ffffff;
    background-size: cover; /* Bild an die Größe des Viewports anpassen */
    background-position: center; /* Bild zentrieren */
    background-attachment: fixed; /* Bild fixieren, damit es sich beim Scrollen nicht bewegt */
  }

h1 {
    margin: 0;
    font-size: 24px;
}

p {
    margin: 10px 7%;
    text-align: justify;
}

.main {
    padding: 20px;
}

.button-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

button {
    width: 80%;
    max-width: 300px; /* Begrenzen Sie die Breite, um sicherzustellen, dass die Buttons nicht zu groß werden */
    margin: 10px 0;
    padding: 15px;
    font-size: 16px;
    background-color: #e0c4ce;
    color: rgb(0, 0, 0); 
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none; /* Unterstreichung entfernen */
}

button:hover,
button:focus {
    color: #5b507a; /* Dunklere Schriftfarbe */
    box-shadow: 0 0 10px #f3439e; /* Leichter blauer Schatten */
}


button a {
    color: white; /* Schriftfarbe auf Weiß setzen */
    text-decoration: none; /* Unterstreichung entfernen */
}

button:focus {
    outline: none; /* Fokusumrandung entfernen */
}



/* Media Query für Mobilgeräte */
@media only screen and (max-width: 600px) {
    button {
        width: 80%; /* Reduzieren Sie die Breite der Buttons für kleinere Bildschirme */
    }
}

.logo {
    max-height: 20%;
}

/* Media Query für Mobilgeräte */
@media only screen and (max-width: 600px) {
    .logo {
        max-width: 70%; /* Begrenze die Höhe des Logos auf maximal 8% der Höhe des Header-Bereichs für Mobilgeräte */
    }
}

/* Media Query für Desktopgeräte */
@media only screen and (min-width: 601px) {
    .logo {
        max-width: 40%; /* Begrenze die Höhe des Logos auf maximal 20% der Höhe des Header-Bereichs für Desktopgeräte */
    }
}

