/* Flappy Bird Game - style.css */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    height: 100%;
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f0f8ff;
}

#game-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 320px;
    height: 480px;
    background-color: #87ceeb;
    border: 2px solid black;
}

canvas {
    display: block;
}
