body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background-color: #f4f4f4;
}

canvas {
    border: 2px solid #000;
}

button {
    margin-top: 10px;
    padding: 10px 20px;
    background-color: #0095DD;
    color: white;
    border: none;
    font-size: 16px;
    cursor: pointer;
}

button:hover {
    background-color: #005f8d;
}
