html {
    background-color: black;
}

body {
    font-family: 'Times New Roman', Times, serif;
    max-width: 100%;
    margin: 0;
}

#top {
    text-align: center;
}

#logo {
    margin: 0 auto; /* Zentriere das Logo horizontal */
    padding-top: 3%;
    background-color: black;
}

#logo img {
    max-width: 1000px; /* Stelle sicher, dass das Bild nicht breiter als sein Container ist */
    height: auto; /* Die Höhe automatisch anpassen, um das Seitenverhältnis beizubehalten */
    display: block; /* Stelle sicher, dass das Bild als Blockelement behandelt wird */
    margin: 0 auto; /* Zentriere das Bild horizontal */
}

#logo-namen {
    font-size: 20px;
    font-weight: bold;
    margin: 20px;
    color: white;
}

#slogan {
    font-size: 30px;
    font-weight: bold;
    color: white;
}

#navigation a {
    color: gray;
    padding: 15px;
    font-size: 150%;
    text-decoration: none;
    display: inline-block;
    border-bottom: white;
}

#navigation a:hover {
    color: rgb(245, 226, 121);
}

#top-image img {
    max-width: 100%;
    margin-top: 20px;
    margin-bottom: 20px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

#main {
    max-width: 800px;
    margin: auto;
    padding: 16px;
    color: white;
}

#footer {
    text-align: center;
    color: gray;
    padding: 15px;
}
