body {
    margin: 0;
    overflow: hidden; /* Prevent scrollbars for the 3D canvas */
    font-family: Arial, sans-serif;
    background-image: url('./space.jpeg'); /* Set the background image */
    background-size: cover; /* Ensure the image covers the entire screen */
    background-position: center; /* Center the image */
    background-repeat: repeat; /* Prevent repeating the image */
}

#container {
    position: relative;
    width: 100%;
    height: 100%;
}

canvas {
    position: absolute;
    top: 0;
    left: 0;
}