/* Add Your Styles Here! */

:root {
    --speed: .5s;
}

body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.menu {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    /* width: 75vw; */
    height: 20vh;
    margin-bottom: 5vh;
    margin-top: 5vh;
}
svg {
    position: relative;
    border: 1px solid black;
    width: 90vw;
    height: 65vh;
    bottom: 0%;
}

button {
    border: 1px solid black;
    background-color: rgb(255, 255, 255);
    opacity: .65;
    cursor: pointer;
    height: 30px;
    transition: .4s ease;
    border-radius: 50px;
}


 p {
     text-align: center;
     /* width: 50vw; */
 }

.buttons {
    /* margin-top: 10px; */
    /* width: 75vw; */
    margin-bottom: 10px;
}

button:hover {
    background-color: rgb(230,230,230);
    opacity: 1;
    transform: scale(.95);
}

button:active {
    transform: scale(1);
}

.vis {
    background-color: rgb(184, 166, 166);
}



circle {
    transition: fill .3s ease;
    transition: cx .3s ease;
    transition: cy .3s ease;
}

.curCheck {
    transition: all var(--speed) ease;
    /* transition: cy .5s ease; */
}

.pointC {
    transition: .5s ease;
}

.inp {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#num {
    width: 50px;
}