@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;700&display=swap');

body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, #2c3e50, #000000);
    overflow: hidden;
    color: #fff;
    font-family: 'Cinzel', serif;
}

#space {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 100vh;
    transform: translate(-50%, -50%);
    perspective: 1000px;
    transform-style: preserve-3d;
}

.dust {
    position: absolute;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    /* We achieve the microscopic glass effect via box-shadow and backdrop filter */
    backdrop-filter: blur(5px);
    box-shadow: inset 0 0 20px rgba(255,255,255,0.8), 0 0 50px rgba(255,255,255,0.2);
    transform-style: preserve-3d;
    pointer-events: none;
}

.focal-point {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 100;
    pointer-events: none;
    text-shadow: 0 0 20px rgba(255,255,255,0.8);
}

h1 {
    font-size: 5rem;
    margin: 0;
    letter-spacing: 15px;
}

p {
    font-size: 1.2rem;
    letter-spacing: 5px;
    opacity: 0.7;
}
