@font-face {
    font-family: 'Roboto';
    src: url('fonts/Roboto-Regular.ttf') format('truetype');
}

body {
    margin: 0;
    font-family: 'Roboto', sans-serif;
    font-size: 32px; /* Schriftgröße verdoppelt */
    background-color: #575656; /* Dunkelantrazith */
    color: #8B0000; /* Dunkelrot */
}

header {
    position: fixed;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #2C2C2C;
    color: #8B0000;
    padding: 10px 20px;
    z-index: 100;
    box-sizing: border-box;
}

.nav-links {
    display: flex;
    gap: 15px;
}

.nav-links a, .login-link {
    color: #8B0000; /* Setzt die Linkfarbe auf Dunkelrot */
    text-decoration: none;
}

.nav-links a:hover, .login-link:hover {
    text-decoration: underline;
}

.login-link {
    margin-left: auto; /* Schiebt den Login-Link nach rechts */
}

footer {
    position: fixed;
    width: 100%;
    text-align: center;
    background-color: #2C2C2C;
    color: #8B0000;
    padding: 10px 0;
    bottom: 0;
    box-sizing: border-box;
}

footer p {
    margin: 0;
}

footer a {
    margin: 0 15px;
    color: #8B0000;
    text-decoration: none;
}

.main-content {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    padding: 60px 20px; /* Platz für Header und Footer */
    box-sizing: border-box;
}

.main-content img {
    max-width: 100%;
    height: auto;
}

/* Zentrierter Inhalt für Unterseiten */
.content {
    padding: 60px 20px; /* Platz für Header und Footer */
    box-sizing: border-box;
    text-align: center;
    font-size: 24px; /* Schriftgröße + 6px */
    max-width: 800px;
    margin: 0 auto;
}

a {
    color: #8B0000;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Responsives Design */
@media only screen and (max-width: 768px) {
    .main-content {
        padding: 40px 10px;
    }

    header {
        flex-direction: column;
        align-items: flex-start;
    }

    .login-link {
        margin-top: 10px;
    }
}
