    html {
        scroll-behavior: smooth;
    }   
    
    body {
        margin: 0;
        font-family: 'Owners_wide_medium';
        overflow: hidden;
        cursor: none;
        background-color: black;
    }

    #customCursor {
        position: fixed;
        top: 0;
        left: 0;
        width: 15px;
        height: 15px;
        border: 2.4px solid white;
        border-radius: 50%;
        background-color: transparent; /* No fill initially */
        pointer-events: none; /* Prevent cursor from interfering with clicks */
        transition: transform 0.2s ease, background-color 0.2s ease, width 0.2s ease, height 0.2s ease;
        z-index: 1000;
    }

    .container {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        min-height: calc(var(--vh, 1vh) * 100); /* Use calculated viewport height */
        position: relative;
        z-index: auto;
    }

    .header, .footer {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .header {
        height: 14vh;
        margin-left: 2.5vw;
        margin-right: 2.5vw;
        z-index: 3;
        color: white;
        background-color: rgba(0, 0, 0, 0);
    }

    .title-container {
        position: relative;
    }
    
    #profilbild {
        position: absolute;
        transform: translate(-35%, 1.3vh) rotate(15deg);
        margin: 0;
        height: 50px;
        width: auto;
        filter: drop-shadow(-3px 0px 8px rgb(24, 24, 24));
    }

    #profilbild.invertiert {
        filter: saturate(0) brightness(10000)
    }

    .footer {
        flex-shrink: 0;
        height: 10vh;
        margin-left: 2.5vw;
        margin-right: 2.5vw;
        font-size: 15px;
        padding: 10px 0;
        position: static;
        display: flex; /* Make footer a flex container */
        justify-content: space-between; /* Space out child elements */
        flex-shrink: 0; /* Prevent footer from shrinking */
    }

    @supports (-webkit-touch-callout: none) {
        .footer {
            display: block; /* Ensure it's not hidden */
            position: sticky; /* Ensure normal flow */
        }
    }

    #title {
        font-size: 38px;
        font-family: "owners-xnarrow", sans-serif;
        text-decoration: none;
        color: rgb(255, 255, 255);
        cursor: none;
    }

    #title:hover {
        color: rgb(0, 0, 255);
        text-decoration: none;
        cursor: none;
    }

    .footer a {
        color: white;
        text-decoration: none;
    }

    .footer a:hover {
        text-decoration: underline;
        cursor: none;
    }

    .menu {
        position: relative;
        font-size: 24px;
        z-index: 3;
    }

    .video-container {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: -1;
        pointer-events: none;
        overflow: hidden;
    }
    
    #videoBackground {
        width: 100vw;
        height: 56.25vw; /* Given a 16:9 aspect ratio, 9/16*100 = 56.25 */
        min-height: 100vh;
        min-width: 177.77vh; /* Given a 16:9 aspect ratio, 16/9*100 = 177.77 */
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        pointer-events: none;
    }

    .overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.8);
        z-index: 0;
        justify-content: right;
    }

    .menu-content {
        display: block;
        text-align: right;
        box-sizing: border-box;
        margin-right: 3vw;
        margin-top: 15vh;
    }

    .menu-content a {
        display: block;
        padding: 10px;
        text-decoration: none;
        color: rgb(255, 255, 255);
    }

    .menu-content a:hover {
        text-decoration: underline;
        cursor: none;
    }

    #menuButton {
        color: rgb(0, 0, 255);
        font-size: 32px;
    }

    #menuButton:hover {
        color: rgb(255, 255, 255);
    }

    @media (max-width: 1000px) {
        .content, .header, .footer {
            margin-left: 6vw;
            margin-right: 6vw;
        }

        #title {
            font-size: 30px;
        }

        #profilbild{
            width: 45px;
            height: 45px;
            transform: translate(-35%, 0.8vh) rotate(15deg);
        }

        .header {
            height: 10vh;
        }

        .footer {
            height: 5vh;
        }

        .menu-content {
            margin-top: 8vh;
            margin-top: 11vh;
        }

        .footer{
            font-size: 10px;
            position: sticky;
            display: flex;
            flex-direction: row;
        }

        .menu-content {
            margin-right: 7vw;
        }

        #customCursor {
            display: none;
        }

        body {
            cursor: auto;
        }

        .header h1 {
            font-size: 25px;
        }

        #menuButton:hover {
            color: rgb(0, 0, 255);
        }
    }