@import url('https://fonts.googleapis.com/css2?family=TASA+Orbiter:wght@400..800&display=swap');

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

body { 
    margin: 0; 
    padding: 0;
    overflow: hidden; 
    background-color: #000; 
    animation: fadeIn 1s ease-in-out;
}

canvas { 
    display: block; 
}

#ui-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    pointer-events: none;
    color: rgba(255, 255, 255, 0.8);
    font-family: "TASA Orbiter", sans-serif;
    font-optical-sizing: auto;
    z-index: 10;
}

h1 {
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    margin: 0;
    text-transform: uppercase;
}