﻿body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background-color: #333;
    color: white;
    font-family: Arial, sans-serif;
}


canvas {
    background-color: #70c5ce;
    border: 2px solid white;
}


#scoreDisplay {
    margin-top: 10px;
    font-size: 1.5em;
}


#messageArea {
    position: absolute;
    font-size: 1.2em;
    color: black;
    top: 50%;
    transform: translateY(-50%);
}