body, html {
    width: 100%;
    height: 100%;
    margin: 0;
    overflow: hidden;
}
canvas {
    display: block;
    color: black;
    background-color: black;
}
.controls {
    position: absolute;
    top: 10px;
    left: 10px;
    width: 150px;
    height: 600px;
    background: rgba(255, 255, 255, 0.1);
    color: rgb(181, 181, 181); /* Set the text color to white */
    padding: 10px;
    border-radius: 5px;
    overflow: auto;
}
.controls label {
    display: block;
    margin: 5px 0;
}
.controls.hidden {
    transform: translateX(-350px);
}
.hamburger {
    position: absolute;
    top: 10px;
    left: 10px;
    width: 30px;
    height: 30px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    z-index: 10;
}
.hamburger .line {
    width: 20px;
    height: 2px;
    background: black;
    margin: 2px 0;
}