*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
:root{
    --topX: 2rem;
    --rightY: 2rem;
}
body{
    width: 100%;
    height: 100%;
    background: transparent;
    position: absolute;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}
#GraphPage {
    position: absolute;
    background: black;
    z-index: -2;
}
#circlePage{
    position: absolute;
    background: transparent;
    z-index: -1;
}
#htmlField{
    position: absolute;
    top: var(--topX);
    right: var(--rightY);
}
form{
    border: 1px solid aqua;
    border-radius: 1rem;
    backdrop-filter: blur(1px);
    padding-left: 4px;
    padding-right: 4px;
    position: relative;
    top: 0;
    right: 0;
    color: #cfffee;
    font-weight: bolder;
    font-size: 1.5rem;
}
.point{
    margin-top: 0.5rem;
    margin-left: 0.5rem;
    font-size: 1.8rem;
}
button {
    color: cyan;
    background-color: black;
    border: 2px solid #cfffee;
    font-size: 1.8rem;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    width: fit-content;
    height: 2.5rem;
    border-radius: 10px;
    transition-duration: 150ms;
}
button:active {
    transform: scale(0.96);
    border-color: black;
    background-color: #cfffee;
    color: black;
    box-shadow: 0 0 25px cyan;
}
input{
    width: 4rem;
    height: 1.8rem;
    border: 1px solid cyan;
    border-radius: 0.5rem;
    background: transparent;
    color: aquamarine;
    font-size: 1.5rem;
}
input[type = "number"]::-webkit-inner-spin-button {
    display: none;
}
.R{
    text-align: center;
}
::placeholder{
    color: #cfffee;
    opacity: 0.55;
}
.end{
    width: 13rem;
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
    row-gap: 0.5rem;
    margin: 1rem 0;
}

#eqn{
    position: absolute;
    width: fit-content;
    left: 2px;
    bottom: 8%;
    margin-top: 1rem;
    backdrop-filter: blur(1px);
    padding: 0 1rem;
    color: aqua;
    font-size: 2rem;
    border: 2px solid aqua;
    border-radius: 1.5rem 0;
}
