
        body, html {
            margin: 0;
            padding: 0;
            overflow: hidden;
            font-family: 'JetBrains Mono', monospace;
            height: 100%;
        }
        #scene-container {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
        }
        .content {
            position: relative;
            z-index: 1;
            color: white;
            
            padding: 20px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            height: 100vh;
        }
        .menu-wrapper {
            background: rgba(0, 0, 0, 0.7);
            border: 3px solid white;
            padding: 20px;
            margin-top: 20px;
        }
        a {
            color: white;
            text-decoration: none;
        }
        a:hover > .link-title-wrapper {
            background-color: rgba(255, 255, 255, 0.2);
        }
        .nav-item {
            width: 24px;
            fill: white;
            margin-top: 10px;
        }





        
