body {
    font-family: Arial, sans-serif;
    text-align: center;
    background-color: #f0f8ff;
    margin: 0;
    padding: 0;
}

header {
    background-color: #3498db;
    color: white;
    padding: 50px 20px;
}

h1 {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 10px;
}

.language-selector {
    position: absolute;
    top: 20px;
    left: 20px;
}

.dropbtn {
    background-color: white;
    border: 1px solid #ccc;
    padding: 5px 10px;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Flaggen-Größe verkleinert */
.flag {
    width: 30px;
    height: 20px;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: white;
    min-width: 120px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.pi-text,
.pi-numbers {
    font-size: 18px;
    color: black;
    background-color: #b3daff;
    padding: 10px;
    border-radius: 5px;
    max-width: 600px;
    margin: 20px auto;
    line-height: 1.5;
}