body {
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #0b1a2a; /* 깊은 바다 색상 */
    height: 100vh;
    overflow: hidden;
}

/* 캔버스에 픽셀 아트 렌더링 적용 */
canvas {
    image-rendering: -moz-crisp-edges;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    image-rendering: pixelated;
    box-shadow: 0 0 30px rgba(0, 100, 255, 0.3); /* 푸른빛 테두리 효과 추가 */
}
