body {
    margin: 0;
    overflow: hidden; /* Убираем скроллбары */
    background-color: #000;
    color: white;
    font-family: Arial, sans-serif;
}

#game-container {
    width: 100vw;
    height: 100vh;
    display: block;
}

#info {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 10px;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 5px;
    z-index: 100; /* Чтобы текст был поверх canvas */
} 