html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', sans-serif;
    background: url('hintergrund.svg') center center/cover no-repeat, black;
    color: white;
    width: 100vw;
    overflow-x: hidden;
    position: relative;
}

.center-wrapper {
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.logo {
    position: relative;
    z-index: 2;
    background: black;
    max-height: 120px;
    padding: 0 18px;
    border-radius: 8px;
    margin: 0 auto;
    display: block;
}

.logo-line {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    border: none;
    border-top: 2px solid #fff;
    transform: translateY(-50%);
    z-index: 1;
}


h1 {
    font-family: 'Baskervville', serif;
    font-size: 100px;
    font-weight: 500;
    color: white;
    margin: 0 0 0px 0; 
}

.logo-line-wrapper {
    position: relative;
    width: 70vw;
    min-width: 300px;
    margin: 0 auto;
    height: 120px; 
    display: flex;
    align-items: center;
    justify-content: center;
}

footer {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100vw;
    text-align: center;
    box-sizing: border-box;
    z-index: 2;
}

.bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px;           
    margin-top: 16px;
    margin-bottom: 16px;
}

.bottom p {
    margin: 0;
    white-space: nowrap; 
}

h2{
    font-size: 1.1rem;
    font-weight: 500;
    color: white;
    margin: 0 0 16px 0; 
}

a{
    color: white;
    text-decoration: underline;
}

/* Tablet */
@media (max-width: 900px) {
    .logo {
        max-height: 80px;
        padding: 0 12px;
    }
    h1 {
        font-size: 5rem;
    }
    html, body {
        background: url('hintergrundv2.svg') center center/cover no-repeat, black;
    }
}

/* Large Mobile */
@media (max-width: 600px) {
    .logo {
        max-height: 60px;
        padding: 0 8px;
    }

    .logo-line-wrapper {
        margin-bottom: 50px;
    }

    html, body {
        background: url('hintergrundv2.svg') center center/cover no-repeat, black;
        overflow: hidden !important;
        height: 100vh !important;
        max-height: 100vh !important;
        width: 100vw !important;
        max-width: 100vw !important;
        position: fixed;
        overscroll-behavior: none;
        touch-action: none;
    }

    .center-wrapper {
        height: 100vh !important;
        max-height: 100vh !important;
        overflow: hidden !important;
    }
}

@media (max-width: 450px) {
    .logo {
        max-height: 60px;
        padding: 0 4px;
    }

    h1{
        font-size: 3rem; 
    }

    html, body {
        background: url('hintergrundv4.svg') center center/cover no-repeat, black;
        overflow: hidden !important;
        height: 100vh !important;
    }

    .logo-line-wrapper {
        margin-bottom: 150px;
    }
}

@media (max-width: 350px) {
    .logo-line-wrapper {
        min-width: 0;
        width: 100vw;
        max-width: 100vw;    
        height: 60px; 
    }

    .logo {
        max-height: 60px;    
        padding: 0 2px;
    }

    html, body {
        background: url('hintergrundv4.svg') center center/cover no-repeat, black;
    }
}