:root {
    --glass-shadow: 0 0 0 1px rgba(255, 255, 255, 0.356), 0 16px 32px rgba(0, 0, 0, 0.12);
    --glass-border: 2px solid transparent;
    --glass-bg: #acacac2c;
}

body {
    background: black;
    margin: 0;
    color: white;
}

@font-face {
    font-family: font;
    src: url('/assets/font/inter.ttf');
}

* {
    font-family: font;
}

#particles-js {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    opacity: 0.7;
}

.container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

body::before {
    content: '';
    position: fixed;
    bottom: -15%;
    left: 50%;
    transform: translateX(-50%);
    width: 200%;
    height: 80%;
    background: radial-gradient(ellipse at bottom, rgba(255, 255, 255, 0.664), transparent 60%);
    opacity: 0.35;
    pointer-events: none;
    z-index: -1;
}

.orbitalnav {
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    scale: 0.95;
    transition: 0.15s;
    opacity: 0;
    display: none;
}

#blur {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    backdrop-filter: blur(2px);
    z-index: -1;
    display: none;
}

.orbitalnav.active {
    opacity: 1 !important;
    scale: 1 !important;
}

.orbitalnav button {
    background: var(--glass-bg);
    border: var(--glass-border);
    box-shadow: var(--glass-shadow);
    height: 55px;
    width: 55px;
    padding: 10px;
    border-radius: 50%;
    cursor: pointer;
    margin: 10px;
    backdrop-filter: blur(10px);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: 0.2s;
}

.orbitalnav a {
    border-radius: 50%;
    text-align: center;
    color: white;
    text-decoration: none;
    font-size: 23px;
}

#center {
    position: absolute;
    transform: translate(-5%, -5%);
    left: 60%;
    top: 60%;
    z-index: 10;
    scale: 1.2;
}

.orbitalnav button:hover {
    scale: 1.05;
}

#center:hover {
    scale: 1.3;
}