img#logo {
    width: 30%;
    float: right;
    margin-left: 1em;
}
@font-face {
    font-family: 'boffin';
    src: local('fonts/Boffin.otf');
}
body {
    margin: 2em;
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
}
text {
    font-family: 'boffin';
}
h1 {
    display: block;
    font-family: 'Fredoka One', cursive;
    font-size: 60px;
    color: black;
    text-align: left; /* Überschrift nach links ausgerichtet */
    margin-bottom: 1em;
}

h2 {
    display: block;
    font-family: 'Fredoka One', cursive;
    font-size: 40px;
    color: black;
    text-align: left; /* Überschrift nach links ausgerichtet */
    margin-bottom: 1em;
}

/* Section Titles */
.section-title {
    font-family: 'Fredoka One', cursive;
    font-size: 2em;
    margin-bottom: 0.5em;
    color: #333;
    text-align: left; /* Überschriften der Abschnitte nach links ausgerichtet */
}

/* Section Text */
.section-text {
    font-size: 1.2em;
    margin-bottom: 1.5em;
    text-align: justify;
}

/* Footer Styling */
.footer {
    background-color: #f4f4f4;
    padding: 1em 0;
    text-align: center;
}

.footer-link {
    color: #007BFF;
    text-decoration: none;
}

.footer-link:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 1024px) {
    img#logo {
        width: 40%;
        float: none;
        margin: 0 auto;
        display: block;
    }

    h1 {
        font-size: 50px;
    }

    .section-title {
        font-size: 1.8em;
    }

    .section-text {
        font-size: 1.1em;
    }
}

@media (max-width: 768px) {
    img#logo {
        width: 50%;
        float: none;
        margin: 0 auto;
        display: block;
    }

    body {
        margin: 1em;
    }

    h1 {
        font-size: 40px;
    }

    .section-title {
        font-size: 1.6em;
    }

    .section-text {
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    img#logo {
        width: 70%;
    }

    h1 {
        font-size: 30px;
    }

    body {
        margin: 0.5em;
    }

    .section-title {
        font-size: 1.4em;
    }

    .section-text {
        font-size: 0.9em;
    }

    .footer {
        font-size: 0.9em;
    }
}