* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Inter, sans-serif;
}

body,
html {
    color: white;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: #000;
    height: 100%;
    width: 100%;
}

#planet-container canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
}

body {
    height: 300vh;
}

.logo img {
    width: 4.3em !important;
    height: 5rem !important;
    margin-left: 10px;
}

/* UI LAYER */
.ui {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

/* NAV */
.nav {
    position: absolute;
    top: 25px;
    left: 40px;
    right: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    pointer-events: auto;
}

.cta {
    background: white;
    border: none;
    padding: 10px 18px;
    border-radius: 20px;
    cursor: pointer;
}

/* TITLE */
.title {
    font-family: 'Orbitron', sans-serif;
    text-align: center;
    color: rgba(255, 255, 255, .9);
    opacity: .85;
    margin-top: 80px;

    font-family: 'Orbitron', sans-serif;
    font-weight: 400;
    font-size: 140px;
    letter-spacing: 22px;
    text-shadow: 0 0 30px rgba(255, 255, 255, .08), 0 0 60px rgba(120, 200, 255, .05);
}

/* INFO PANEL */
.info {
    position: absolute;
    bottom: 70px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 60px;
    padding: 18px 40px;
    background: rgba(255, 255, 255, .06);
    backdrop-filter: blur(12px);
    border-radius: 20px;
}

.info span {
    font-size: 10px;
    opacity: .6;
    letter-spacing: 2px;
}

.info p {
    margin-top: 5px;
    font-size: 14px;
}

/* PARALLAX STARS */
.stars {
    position: absolute;
    width: 200%;
    height: 200%;
    background-repeat: repeat;
}

.layer1 {
    background-image: url('https://www.transparenttextures.com/patterns/stardust.png');
    animation: moveStars 200s linear infinite;
    opacity: .4;
}

.layer2 {
    background-image: url('https://www.transparenttextures.com/patterns/stardust.png');
    animation: moveStars 120s linear infinite;
    opacity: .3;
}

.layer3 {
    background-image: url('https://www.transparenttextures.com/patterns/stardust.png');
    animation: moveStars 80s linear infinite;
    opacity: .2;
}

@keyframes moveStars {
    from {
        transform: translate(0, 0)
    }

    to {
        transform: translate(-1000px, -1000px)
    }
}

/* ORBITS */
.orbit {
    position: absolute;
    border: 3px solid rgba(255, 255, 255, .08);
    border-radius: 50%;
    left: 50%;
    top: 55%;
    transform: translate(-50%, -50%);
    animation: orbitSpin 40s linear infinite;
}

.orbit1 {
    width: 600px;
    height: 250px;
}

.orbit2 {
    width: 800px;
    height: 320px;
    animation-duration: 70s;
}

@keyframes orbitSpin {
    from {
        transform: translate(-50%, -50%) rotate(0deg)
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg)
    }
}