html, body {
  margin: 0;
  padding: 0;
  min-width: 100%;       /* Mindestens Bildschirmbreite */
  display: inline-block; /* Zwingt den Body, mit dem breitesten Inhalt mitzuwachsen */
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background-color: #f4f4f9;
    color: #333;
}

header {
    min-width: 100%;
    width: max-content;
    box-sizing: border-box;
    background-color: #fff;
    color: gray;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    display: flex; gap: 20px;
    align-items: center;
}
.logo {
    margin-left: 20px;
    font-family: "Moirai One", system-ui;
    font-size: 40px;
    font-weight: bold;
}
.subheader {
    font-size:16px;
    white-space:nowrap;
}
.backbutton {
    margin-left: auto;
    margin-right: 20px;
}

footer {
    margin-top: auto;
    /* Drückt den Footer an den unteren Rand */
    padding: 5px;
    background-color: #fff;
    text-align: center;
}

footer a {
    font-size: smaller;
    font-weight: 100;
}

.content {
    width: 400px;
    background: #fff;
    margin: 20px 40px;
    padding: 20px;
    border-radius: 8px;
    max-width: 500px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

h1 {
    font-size: 1.5em;
    margin-top: 0;
}

ul {
    list-style-type: none;
    padding: 0;
}

li {
    margin: 15px 0;
}

a {
    text-decoration: none;
    color: #0066cc;
    font-weight: bold;
}

a:hover {
    text-decoration: underline;
}
