@font-face {
    font-family: 'Boblox';
    src: url('/Boblox04Regular-nRoyY.ttf') format('truetype');
}

body {
    font-family: 'Boblox', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #add8e6; /* Light blue background, reminiscent of Roblox sky */
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    overflow: hidden; /* Prevent scrollbars */
    text-align: center;
}

#container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

h1 {
    font-size: 3em;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    margin-bottom: 10px;
}

#instructions {
    font-size: 1.2em;
    color: #eee;
    background-color: rgba(0,0,0,0.3);
    padding: 5px 10px;
    border-radius: 5px;
    margin-bottom: 15px;
}

#scene-container {
    width: 80vw;
    max-width: 800px;
    height: 60vh;
    max-height: 600px;
    background-color: #fff; /* White background for the scene */
    border: 5px solid #555;
    box-shadow: 0 0 15px rgba(0,0,0,0.5);
    position: relative; /* Needed for potential overlays or absolute positioning within */
}

canvas {
    display: block; /* Remove extra space below canvas */
    width: 100%;
    height: 100%;
}

