html {
    font-family: "Poppins", sans-serif;
    font-size: 16px;

}


/* poppins-regular - latin */
@font-face {
    font-display: swap; 
    font-family: "Poppins";
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/poppins-v21-latin-regular.woff2') format('woff2');
}

/* poppins-italic - latin */
@font-face {
    font-display: swap; 
    font-family: "Poppins";
    font-style: italic;
    font-weight: 400;
    src: url('../fonts/poppins-v21-latin-italic.woff2') format('woff2');
}

/* poppins-700 - latin */
@font-face {
    font-display: swap; 
    font-family: "Poppins";
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/poppins-v21-latin-700.woff2') format('woff2');
}

/* poppins-900 - latin */
@font-face {
    font-display: swap; 
    font-family: "Poppins";
    font-style: normal;
    font-weight: 900;
    src: url('../fonts/poppins-v21-latin-900.woff2') format('woff2');
}

/* Basis-Styling */
body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    background-color: #121212;
    color: #f0f0f0;
    line-height: 1.6;
}

header, nav, main, section {
    max-width: 900px;
    margin: auto;
    padding: 1rem;
    background-color: #1e1e1e;
    border-radius: 10px;
    margin-top: 1rem;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

h1, h2 {
    color: #ffffff;
}

a {
    color: #4dabf7;
    text-decoration: none;
    transition: color 0.3s;
}

a:hover {
    color: #82cfff;
}

/* Inhaltsverzeichnis */
.directory {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

/* Social Media Icons */
.social-media-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: flex-start;
    align-items: center;
}

.social-media-icons a:hover img {
    filter: brightness(1.3);
}

/* Responsive Design */
@media (max-width: 600px) {
    .social-media-icons {
        justify-content: center;
    }

    header, nav, main, section {
        padding: 0.8rem;
    }

    h1 {
        font-size: 1.5rem;
        text-align: center;
    }

    h2 {
        font-size: 1.2rem;
    }

    .directory {
        font-size: 1rem;
        padding-left: 0;
    }
}
