body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    background-color: #FFFDF8; /* 배경색 */
    overflow: hidden;
    font-family: 'SUIT Variable', sans-serif;
}

#canvas-container {
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
}

.controls {
    
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
    background: #FFFDF8; 
    opacity: 0.7;
    padding: 10px;
    border-radius: 10px;
    text-align: center;
}

.info {
    color: #FE8439;
    margin: 5px 0 0 0;
    font-size: 20px;
    letter-spacing: -1.5px;
    font-weight: 300;

}