@font-face {
    font-family: 'Press Start 2P';
    src: url('../fonts/PressStart2P.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}

body {
    background-color: #222;
    color: #eee;
    font-family: 'Press Start 2P', monospace;
    text-align: center;
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    height: 100vh;
    overflow: hidden; /* Prevent scrollbars */
}

#game-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

canvas {
    background-color: #000;
    border: 4px solid #eee;
    border-radius: 10px;
}