body {
    margin: 0;
    overflow: hidden; /* Hide scrollbars if the cube is larger than viewport */
    background-color: #282c34;
    color: white;
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#controls {
    text-align: center;
    padding: 20px;
}

#cube-container {
    width: 100vw;
    height: 80vh; /* Takes up most of the viewport height */
}

button {
    padding: 10px 20px;
    margin: 10px;
    font-size: 16px;
    cursor: pointer;
    background-color: #61dafb;
    border: none;
    border-radius: 5px;
    color: #282c34;
    font-weight: bold;
}

button:hover {
    background-color: #21a1f1;
}
