 :root {
            --nav-height: 12vw;
            --title-height: 15vw;
            --total-header-height: calc(var(--nav-height) + var(--title-height));
        }

        body {
            margin: 0;
            font-family: sans-serif;
            background-color: #f7c707;
            color: black;
            padding-top: var(--total-header-height);
        }

        /* 1. The Fixed Navigation Banner */
        .mobile-nav {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: var(--nav-height);
            background-color: #f7c707;
            z-index: 10;
            display: flex;
            justify-content: space-around;
            align-items: center;
        }

        .mobile-nav a {
            font-size: 4vw;
            font-weight: bold;
            color: black;
            text-decoration: none;
        }
        
        /* 2. The Fixed "LANDELLE" Title */
        .mobile-title {
            position: fixed;
            top: var(--nav-height);
            left: 0;
            width: 100%;
            padding: 0vw 0vw 5vw 0vw;
            height: var(--title-height);
            background-color: #f7c707;
            z-index: 9;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .mobile-title h1 {
            margin: 0;
            line-height: 1;
            white-space: nowrap;
            font-size: 18.5vw; 
        }
        
        .mobile-title a {
            text-decoration: none;
            color: inherit;
        }