2025-09-03 18:00:39 +09:00
|
|
|
#game-container {
|
|
|
|
|
display: flex;
|
2025-09-05 18:02:27 +09:00
|
|
|
justify-content: center; /* 가로 중앙 정렬 */
|
|
|
|
|
align-items: flex-start; /* 세로 상단 정렬 */
|
2025-09-03 18:00:39 +09:00
|
|
|
background-color: #008000;
|
|
|
|
|
width: 100vw;
|
|
|
|
|
height: 100vh;
|
|
|
|
|
box-sizing: border-box;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#gameCanvas {
|
|
|
|
|
background-color: #008000;
|
|
|
|
|
border: 2px solid #fff;
|
2025-09-05 18:02:27 +09:00
|
|
|
width: 95%;
|
|
|
|
|
max-height: min(95vw, 95vh);
|
2025-09-03 18:00:39 +09:00
|
|
|
box-sizing: border-box;
|
|
|
|
|
}
|