/* Hintergrundfarbe für die gesamte Seite */
body {
    background-color: white;
    color: black;
    font-family: 'Dosis', sans-serif;
    margin: 0;
    padding: 0 15px; /*Fügt links und rechts padding hinzu */
    text-align: justify;
    font-size: 1.2rem;
    box-sizing: border-box /*Padding und Border in der Breite erhalten */
}

div {
    margin: 10px;
}

/* Container für Header */
.container {
    display: flex;
    align-items: center;
    max-width: 780px;
    margin: 20px auto;
    background-color: #A9E2F3;
    border-radius: 5px;
}

.foto {
    max-width: 150px;
    height: auto;
}

.text {
    margin-left: 20px;
}

/* Stil für Text im div */

.section {
    max-width: 800px;
    margin: 0 auto;
}

/* Stil für Überschriften */
h1 {
    text-align: center;
    margin-top: 20px;
}

h2 {
    text-align: center;
    margin-top: 50px;
}
/* Stil für Bildcontainer */
.foto-container img {
    width: 100%;
    height: auto;
    max-width: 800px;
    margin: 20px auto;
    display: block;
    border-radius: 5px;
}

/* Ungeordnete Liste ohne Aufzählungszeichen */
ul {
    list-style-type: none;
    padding-left: 0;
    text-align: center;
}

/* Stil für die Listelemente */
ul li {
    margin: 5px 0;
}

/* Dreierleiste mit Flexbox */
.dreierleiste {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 50px;
}

.dreierleiste img {
    width: 150px;
    height: auto;
}

.dreierleiste ul {
    padding-left: 20px;
    margin: 0 20px;
}

/* Textblöcke nebeneinander */
.text-container {
    display: flex;
    justify-content: space-between;
    margin: 20px auto;
    max-width: 800px;
}

.text-block {
    width: 48%;
    padding: 20px;
    background-color: #A9E2F3;
    border-radius: 5px;
}

/* Stil für den Anmelde-Button */
.button-container {
    text-align: center;
    margin: 20px 0;
}

button {
    background-color: #0066cc;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    font-family: "Century Gothic", sans-serif;
}

button:hover {
    background-color: #005bb5;
}

/* Stil für das statement */
.statement {
    text-align: center;
    font-weight: bold;
    margin: 20px auto;
    max-width: 800px;
}

/* Fotogalerie */
.foto-galerie {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
}

.foto-galerie img {
    width: 32%;
    height: auto;
    margin: 5px 0;
}

/* Footer */
footer {
    padding: 10px;
    text-align: center;
    font-weight: bold;
    margin-top: 20px;
    font-size: 1rem;
}

/* Stil für die Navigation */
nav {
    padding: 10px;
}

nav ul {
    list-style: none;
    background: white;
    padding: 0;
}

nav ul li {
    display: inline-block;
    position: relative;
}

nav ul li a {
    display: block;
    padding: 10px 20px;
    color: black;
    text-decoration: none;
    text-align: center;
}

nav ul li a:hover {
    font-size: 1.6rem;
}

/* Media Queries für größere Bildschirme */
@media (min-width: 768px) {
 
    .text-container {
        max-width: 800px;
    }

    .text-block {
        width: 45%;
    }

    .dreierleiste img {
        width: 150px;
        height: auto;
    }
    
}
