/* body {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: rgb(231, 231, 231);
    height: 100vh;
    margin: 0;
} */

.canvas {
    width: 80vh;
    height: 80vh;
    border: 1px solid #000;
    border-radius: 5px;
    position: relative;
    overflow: hidden;
    background-color: rgb(231, 231, 231);
    margin-bottom: 20px;
}

.point {
    width: 10px;
    height: 10px;
    position: absolute;
    background-color: red;
}

.background-circle {
    width: 100%;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 50%;
    position: absolute;
}

.controls {
    display: flex;
    gap: 10px;
}

button {
    padding: 5px;
    cursor: pointer;
    background-color: #121212;
    /* border-radius: 2px; */
    border: 1px solid darkgrey;
    color: rgb(165, 165, 165);
}

.cursor {
    width: 10px;
    height: 10px;
    background-color: rgb(255, 251, 0);
    border: 0.5px solid black;
    position: absolute;
}