body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #bababa;
}

a {
    text-decoration: none;
    font-family: Arial, serif;
    color: white;
}

.topnav {
    background-color: black;
    position: relative;
    z-index: 100;
}

.nav-items {
    display: flex;
    justify-content: center; /* zentriert die Links */
    align-items: center;
    gap: 20px;
}

.nav-items a {
    display: block;
    padding: 14px 16px;
    font-size: 17px;
    color: white;
    text-align: center;
}

.nav-items a:hover {
    background-color: #ddd;
    color: black;
}

.nav-items a.active {
    background-color: #323232;
}

.topnav .icon {
    display: none;
    position: absolute;
    right: 10px;
    top: 0;
    font-size: 28px;
    padding: 14px 16px;
    cursor: pointer;
}

.welcome {
    position: relative;
    text-align: center;
    color: white;
}

.background {
    width: 100%;
    height: 100vh;
    object-fit: cover;
    filter: brightness(50%);
}

.title {
    position: absolute;
    font-size: 50px;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.subtitle {
    position: absolute;
    font-size: 25px;
    top: 55%;
    left: 50%;
    transform: translate(-50%, 0);
}

.info {
    width: 50%;
    margin: 40px auto;
    font-size: 20px;
    text-align: center;
}

.site-footer {
    background: #ffffff;
    border-top: 1px solid #e6e6e6;
    padding: 24px 16px;
}

.footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 16px;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer-links {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #111111;
    font-size: 16px;
}

.footer-links a:hover {
    text-decoration: underline;
}

.footer-copy {
    color: #111111;
    font-size: 16px;
}

@media screen and (max-width: 600px) {
    .nav-items {
        flex-direction: column;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: rgba(0,0,0,0.95);
        justify-content: center;
        align-items: center;
        gap: 30px;
        display: none;
        z-index: 200;
    }

.subtitle {
    transform: translate(-50%, 50%);
}
	
    .nav-items a {
        font-size: 22px;
        padding: 12px 20px;
        width: auto;
    }

    .nav-items.responsive {
        display: flex;
    }

    .topnav .icon {
        display: block;
    }
}