body {
    margin: 0;
    overflow: hidden; /* Hide scrollbars */
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #70c5ce; /* Light blue background, typical for Flappy Bird */
}

canvas {
    border: 1px solid #000;
    display: block;
    background-color: #70c5ce; /* Ensure canvas background matches body if not fully covering */
}
