body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    overflow: hidden;
    font-family: monospace;
    color: white
}
#webgl-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}
nav {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(255, 255, 255, 0);
    padding: 10px;
    border-radius: 8px;
    background-color: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}
nav a {
    color: white;
    text-decoration: none;
    padding: 5px;
    margin: 0 10px;
    border-left: 1px solid white;
    border-right: 1px solid white;
    border-radius: 8px;
}

nav a:hover {
    background-color: rgba(255, 255, 255, 0.7);
    color: rgb(255, 136, 0);
}

.content {
    position: absolute;
    top: 50%;
    left: 10%;
    right: 10%;
    transform: translate(0%, -50%);
    text-align: center;
    padding: 5px 30px;
    border-radius: 8px;
    background-color: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}
.subsection {
    padding: 5px 0px;
    margin: 5px 0px;
    border-radius: 8px;
    background-color: rgba(33, 0, 35, 0.24);
    border: 2px solid rgba(255, 255, 255, 0.2);
}
.subsection a {
    color: rgb(255, 156, 27);
}
.section {
    display: none;
}
.section.active {
    display: block;
}