/* Basic Reset and Global Styles */
body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    background-color: #000000;
    color: #ffffff;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    overflow: hidden; /* Prevents scrollbars from appearing */
}

/* Starfield Canvas Styling */
#starfield {
    position: fixed; /* Fixes it to the viewport */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1; /* Crucial: places the canvas behind the content */
}

/* Content Container Styling */
.content-container {
    height: 100vh; /* Full viewport height */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    box-sizing: border-box;
}

h1 {
    font-size: 2.5rem;
    font-weight: 300;
    margin: 0 0 20px 0;
    letter-spacing: 2px;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

nav a {
    display: block;
    color: #cccccc;
    text-decoration: none;
    font-size: 1.2rem;
    margin: 12px 0;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

nav a:hover {
    color: #ffffff;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.7);
}
