/* Set margin, flex properties, height, and background color for the body */
body {
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #074881; /* Red background color */
}

/* Add border to the canvas element */
canvas {
    border: 4px solid #fff;
    border-radius: 50px;
    background-color: #4a9be2;
}
