body {
    margin: 0;
    overflow: hidden;
    font-family: Arial, sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    background-color: black; /* Black background */
    color: white; /* White text */
    text-align: center;
}

/* Background WebGL Canvas */
#webglCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
}

/* Foreground Content */
.content {
    position: absolute;
    padding: 20px;
    background: rgba(0, 0, 0, 0.8);  /* Dark semi-transparent background */
    border-radius: 15px;
    box-shadow: 0 0 30px rgba(0, 0, 255, 0.8); /* Neon blue glow */
    backdrop-filter: blur(10px);
}

/* Logo */
.logo {
    width: 120px;
    margin-bottom: 20px;
}

/* Text Styling */
h1 {
    font-size: 2rem;
    margin-bottom: 10px;
}

p {
    font-size: 1.2rem;
    opacity: 0.9;
}
