body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    background: #f4f4f4;
}

.about-section {
    text-align: center;
    padding: 50px 20px;
    background: #fff;
}

/* Anpassung der Schriftgröße für die Überschrift */
.about-section h1 {
    margin: 0;
    color: #333;
    font-size: 2.5em; /* Erhöhung der Schriftgröße für die Überschrift */
}

/* Anpassung der Schriftgröße für den Absatz */
.about-section p {
    color: #666;
    font-size: 1.3em; /* Erhöhung der Schriftgröße für den Absatz */
    line-height: 1.8; /* Anpassung des Zeilenabstands für bessere Lesbarkeit */
}

/* Anpassung der Schriftgröße für die Überschrift und den Absatz in der mobilen Ansicht */
@media screen and (max-width: 768px) {
    .popup-content {
        width: 90%;
        padding: 20px;
    }

    .about-section h1 {
        font-size: 2em; /* Anpassung für mobile Geräte */
    }

    .about-section p {
        font-size: 1.1em; /* Anpassung für mobile Geräte */
    }
}


.popup {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 1000;
}

.popup-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 30px;
    background: #fff;
    width: calc(100% - 40px);
    max-width: 600px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    border-radius: 8px;
}

.close {
    float: right;
    font-size: 32px;
    font-weight: bold;
    cursor: pointer;
    color: #333;
}

.close:hover {
    color: #f44336;
}

@media screen and (max-width: 768px) {
    .popup-content {
        width: 90%;
        padding: 20px;
    }

    .about-section h1 {
        font-size: 1.5em;
    }

    .about-section p {
        font-size: 1em;
    }
}

/* Allgemeine Button-Stilisierung */
.button {
    padding: 10px 20px;
    font-size: 1em;
    color: white;
    background-color: #007bff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Hover-Effekt für den Button */
.button:hover {
    background-color: #0056b3;
    transform: scale(1.05);
}

/* Fokus-Effekt für bessere Zugänglichkeit */
.button:focus {
    outline: none;
    box-shadow: 0 0 0 2px #fff, 0 0 0 4px #007bff;
}

/* Aktiver Button-Zustand */
.button:active {
    background-color: #004885;
    transform: scale(0.95);
}

/* Button in der .about-section anwenden */
.about-section button {
    margin-top: 20px;
}

/* Allgemeiner Button-Stil */
.button {
    background-color: #4CAF50; /* Grüne Hintergrundfarbe */
    border: none;
    color: white;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
    border-radius: 5px;
}

/* Stilvoller Zurück-Button */
.back-button {
    font-size: 16px;
    padding: 10px 20px;
    background-color: #3498db; /* Blaue Hintergrundfarbe */
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    position: absolute;
    top: 20px;
    left: 20px;
    transition: background-color 0.3s, box-shadow 0.3s, transform 0.3s; /* Sanfte Übergänge */
}

/* Pfeil-Icon für den Zurück-Button */
.back-button:before {
    content: "← ";
    font-size: 20px;
}

/* Effekt beim Überfahren mit der Maus */
.back-button:hover {
    background-color: #2980b9; /* Dunklere Blauton beim Hover */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Schatten für 3D-Effekt */
    transform: translateY(-2px); /* Leichte Bewegung nach oben */
}

/* Effekt beim Klicken auf den Button */
.back-button:active {
    background-color: #2980b9;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    transform: translateY(1px); /* Leichte Bewegung nach unten beim Klicken */
}
