body {
    background-color: #000;
    color: #fff;
    font-family: 'Share Tech Mono', monospace;
    text-align: center;
    margin: 0;
    padding: 0;
    overflow: hidden; /* Hide scrollbars */
}

#starfield {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1; /* Place canvas behind content */
}

.content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    position: relative;
    z-index: 1;
    transition: opacity 0.5s ease-out;
}

h1 {
    margin-top: 2rem;
    font-size: 3rem;
    text-shadow: 0 0 10px rgba(255,255,255,0.3);
}

p {
    font-size: 1.2rem;
    text-shadow: 0 0 5px rgba(255,255,255,0.3);
}
