body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    color: #fff;
    background-color: #111;
    overflow: hidden; /* Hide scrollbars */
}

#game-canvas {
    position: fixed;
    top: 0;
    left: 0;
    outline: none;
}

#info {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 10px 20px;
    border-radius: 10px;
    z-index: 10;
}

h1 {
    margin-top: 0;
}

p {
    margin: 5px 0;
}

button {
    margin-top: 10px;
    padding: 10px 15px;
    border: none;
    background-color: #ff4757;
    color: #fff;
    border-radius: 5px;
    cursor: pointer;
}

button:hover {
    background-color: #ff6b81;
}