/* Stylesheet für die Übersetzerwebsite */
body {
    background-color: white;
    color: black
}
/*Abstand zwischen Logo und dem folgenden Absatz anpassen*/
.site-header h1 {
    margin-bottom: 0;
}
.site-header h1 + p {
    margin-top: 0;
}
.site-nav {
    background-color: black;
    color: white;
    margin-top: 1rem;
    margin-bottom: 1rem;
}
.site-nav ul {
    list-style-type: none;
    display: flex;
    padding: 0;
    margin: 0;
}
.site-nav a {
    color: white;
    text-decoration: none;
    text-align: center;
    display: block;
    padding: 0.5rem 1rem;
}
.site-nav [aria-current] a {
    background: #07b;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 0.15em;
}
/* Sanftes Scrollen aktivieren */
html {
    scroll-behavior: smooth;
}
.site-footer {
    background-color: black;
    color: white;
    text-align: right;
    padding: 0.5rem;
}
footer a {
    color: white;
    text-decoration: none;
}
.site-footer ul {
    list-style-type: none;
    display: flex;
    justify-content: flex-end; /* Listenelemente rechtsbündig ausrichten */
    gap: 1rem; /*Zwischenraum */
    padding: 0;
    margin: 0;
}
/* Grundlegende Gestaltung für den Abschnitt mit den Infoboxen */
.infoboxen {
    background-color: whitesmoke;
    padding: 1rem;
    margin-bottom: 1rem;
}
.infobox {
    text-align: center;
    background-color: white;
    padding: 1rem;
    margin: 1rem;
}
/* Grundlegende Gestaltung der Inhalte auf der Seite Leistungen */
.leistungen h3,
linklisten h3 {
    padding-top: 0.5rem;
    border-top: 1px solid whitesmoke;
    margin-bottom: 0.25rem;
}
.beitragsliste article,
.linklisten section {
    margin-bottom: 3rem;
}
/* Grundlegende Gestaltung der Kontaktdaten auf der Seite Kontakt */
address {
    font-style: normal;
    padding: 0.5rem;
}
form {
    max-width: 25rem;
    background-color: whitesmoke;
    padding: 1rem;
}
div {
    margin-bottom: 1rem;
}
label{
    cursor: pointer;
    display: block;
    }
input[type="checkbox"] + label { display: inline; }
button {
    background-color: black;
    color: white;
    padding: 0.5rem;
    border: none;
    font-family: inherit;
    font-size: inherit;
    cursor: pointer;
}
.site-footer [aria-current] a {
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 0.15em;
}