body {
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #000;
    font-family: 'Noto Sans KR', sans-serif;
}

#game-container {
    position: relative;
    width: 800px;
    height: 600px;
    background-image: url('https://cdn.pixabay.com/photo/2016/08/02/21/41/pokemon-1565161_1280.jpg');
    background-size: cover;
    background-position: center;
    overflow: hidden;
    border: 2px solid #fff;
}

#status-bar {
    position: absolute;
    top: 10px;
    left: 10px;
    color: #fff;
    font-size: 18px;
    z-index: 10;
}

canvas {
    display: block;
    background-color: transparent; /* 캔버스 배경을 투명하게 설정 */
}