/* styles.css */

body {
    margin: 0;
    padding: 0;
    background-color: #222; /* Dark background */
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh; /* Full viewport height */
}

#scene-container {
    width: 80%; /* Adjust as needed */
    height: 80vh; /* Adjust as needed */
    border: 2px solid #ccc;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    overflow: hidden; /* Hide overflowing content */
}

