/* Grundstil */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f8f8f8;
    color: #333;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow-x: hidden; /* Verhindert horizontales Scrollen */
}

/* Header */
header {
    background-color: #e60073;
    color: #fff;
    padding: 20px;
    width: 100%;
    text-align: center;
}
header h1 {
    margin: 0;
    font-size: 2em;
}
header p {
    margin: 5px 0 0;
    font-size: 1.1em;
}

/* Hauptinhalt */
section {
    width: 90%;
    max-width: 800px;
    background-color: #fff;
    border-radius: 10px;
    padding: 20px;
    margin: 20px 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    box-sizing: border-box; /* Padding zur Breite hinzufügen */
}
section h2 {
    color: #e60073;
    font-size: 1.6em;
    margin-bottom: 10px;
}

/* Liste der Webseiten */
ul {
    list-style: none;
    padding: 0;
    margin: 0; /* Entfernt zusätzliche Abstände */
}
li {
    margin: 10px 0;
    font-size: 1.2em;
}
a {
    color: #e60073;
    text-decoration: none;
    font-weight: bold;
    word-wrap: break-word; /* Lange URLs umbrechen */
}
a:hover {
    text-decoration: underline;
    color: #333;
}

/* Footer */
footer {
    width: 100%;
    background-color: #333;
    color: #fff;
    padding: 10px 0;
    text-align: center;
    font-size: 0.9em;
    box-sizing: border-box; /* Padding berücksichtigen */
}

/* Social Media Icons */
.social-icons {
    margin-top: 20px;
    text-align: center;
    display: flex;
    justify-content: center;
    flex-wrap: wrap; /* Zeilenumbruch für Icons */
    gap: 10px; /* Abstand zwischen Icons */
}

.social-icons a {
    color: #e60073;
    text-decoration: none;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: #333;
}

/* Responsive Design */
@media (max-width: 768px) {
    header h1 {
        font-size: 1.5em;
    }
    header p {
        font-size: 1em;
    }
    section {
        padding: 15px;
    }
    .social-icons a {
        font-size: 1.2rem; /* Kleinere Icons auf kleinen Bildschirmen */
    }
}
