/* CSS-Regeln für die gesamte Seite */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

/* Stile für den Hintergrund */
.background-image-wrapper {
    background-image: url('resources/fragezeichen.svg');
    background-repeat: no-repeat;
    background-position: right 5% top 3em;
}

/* Semantische Tags stylen */
.site-header {
    text-align: center;
}

.site-header a,
.site-header a:hover,
.site-header a:visited {
    text-decoration: none;
    color: inherit;
}

.content {
    max-width: 800px;
    margin: 2em auto;
    padding: 0 1em;
}

hr {
    border: none;
    border-top: 1px solid #ccc;
    margin: 2em 0;
}

h1, h2, h3 {
    margin: 0.5em 0;
}