body {
    margin: 0;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #4825C7; /* Set the desired background color here */
}

#container {
    position: relative;
    width: 80vw;  /* Adjust as needed */
    height: calc(80vw * 0.5667); /* Adjust to maintain the aspect ratio */
    max-width: 1000px; /* Adjust as needed */
    max-height: calc(1000px * 0.6667); /* Adjust to maintain the aspect ratio */
    border: 0px solid #000; /* Optional, for visual reference */
}

canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
