/* --- HTML --- */

html {
    margin: 0 auto;
    background: #1c1c1e;
color: white;
    /* Hintergrundbild-Einstellungen */
    /* background-image: url(Stefan.jpg); */
    /* margin-top: 50px; */
    /* opacity: 0.2; */
}

body {
    /* Der body-Tag wurde bewusst leer gelassen, aber kann angepasst werden */
}

body h1 {
    color: White;
    font-size: 1.25em;
    font-weight: 200;
    margin-top: 25%;
    margin-left: 50%;
    transform: translateX(-50%); /* Zentriert das h1-Element horizontal */
    position: absolute;
}

body a:link {
    text-decoration: none;
    color: black;
    font-size: 0.75em;
    font-weight: 200;
}

body a:hover,
body a:focus,
body a:active {
    color: red;
}

header {
    font-size: 100%;
    overflow: hidden;
    text-align: center;
    z-index: 10;
    position: relative;
}

header h1,
header h2,
header p {
    color: #289;
    font-weight: normal;
    text-transform: uppercase;
}

nav {
    background: #333;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 101;
}

ul {
    list-style-type: none;
    padding: 0;
    overflow: hidden;
    text-align: center;
    margin: 0;
}

nav a:link,
nav a:visited {
    margin: 0 auto;
    display: block;
    width: 100px;
    font-family: "Helvetica", sans-serif;
    font-size: 18px;
    font-weight: normal;
    color: #FFFFFF;
    text-align: center;
    padding: 15px; /* Erhöhtes Padding für bessere Benutzerfreundlichkeit */
    text-decoration: none;
}

nav a:hover,
nav a:active {
    text-transform: uppercase;
    color: grey;
}

li {
    display: inline-block;
}

#menu {
    text-align: center;
}

#sidebar {
    margin: 200px auto; /* Korrigiert die Syntax und Zentriert */
    padding: 20px; /* padding erfordert Maßeinheiten */
    width: 75%;
    font-size: 18px;
    color: red;
}

#construction-message {
    text-align: center;
    font-size: 2rem;
    color: white; /* Weiße Schriftfarbe für den Text */
    margin-top: 20px;
}