/* Allgemeine Stilregeln für die Seite */
body {
    font-family: 'Quicksand', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f0f0f0;
}

/* Header-Stil */
header {
    background-color: #353A47;
    color: #1DB1A4;
    padding: 20px;
    text-align: center;
    
   
}

div {
    text-align: justify;
}


.header-text {
    margin-left: 10px; /* Abstand zwischen Logo und Text hinzufügen */
}

/* Überschriften */
h1, h2, h3 {
    font-weight: 700;
}

/* Navigation */
nav ul {
    list-style: none;
    padding: 0;
}

nav ul li {
    display: inline;
    margin-right: 20px;
}

nav ul li a {
    text-decoration: none;
    color: #fff;
    font-weight: 500;
}

/* Abschnitte */
section {
    padding: 40px;
    margin: 20px 0;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Formular-Stil */
form {
    margin-top: 20px;
}

form label {
    display: block;
    font-weight: 600;
}

form input[type="text"],
form input[type="email"],
form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-family: 'Quicksand', sans-serif;
}

form input[type="submit"] {
    background-color: #333;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

/* Footer-Stil */
footer {
    text-align: center;
    padding: 20px;
    background-color: #353A47;
    color: #1DB1A4;
}
/* change color for lonks in the footer no underline */
footer a {
    color: #1DB1A4;
    text-decoration: none; 
    
}

.logo {
    width: 300px; /* Breite des Logos */
    height: auto; /* Automatische Anpassung der Höhe */
    float: center;
    /* align-items: center;
    display: flex; */

}


/* styles.css */
.language-toggle {
    display: flex;
    gap: 10px;
}

.flag-icon {
    font-size: 48px; /* Adjust the size as needed */
    color: inherit; /* Inherit the color from the parent element */
}

#language-display {
    margin-top: 20px;
}