/* 画面全体のスタイル設定 */
body { 
    margin: 0; 
    overflow: hidden; 
    background-color: #010103; 
    font-family: sans-serif; 
}

/* キャンバスの配置設定 */
canvas { 
    display: block; 
}

/* 左上のシステムテキストの装飾 */
#info {
    position: absolute; 
    top: 15px; 
    left: 15px; 
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px; 
    pointer-events: none; /* マウスイベントを透過させて操作の邪魔をしない */
    letter-spacing: 0.05em;
}