*{
    box-sizing: border-box;
    margin: 0px;
    padding: 0px;
}

:root {
    --body-color : #000000;
    --box-color : #000000;
    --calculationbox-color : #ffffff;
}

body {
    background-color: var(--body-color);
    padding : clamp(0.5rem,2vw,1rem);
    text-align: center;
}

.calculator-box{
    background-color: var(--box-color);
    width: 97vw;
    height: 99vh;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

.heading {
    font-size: clamp(2.5rem,5vw,3.5rem);
    margin-bottom: clamp(0.8rem,1vw,1.2rem);
    color: white;
}

.show-calculation {
    width: 23%;
    font-size: clamp(1.5rem,3vw,2.5rem);
    border-radius: clamp(0.2rem,1vw,0.5rem);
    padding: clamp(0.2rem,1vw,0.5rem);
    margin: clamp(0.3rem,1.5vw,0.6rem);
    color: white;
}

.claculator-inner-box {
    padding: clamp(1rem,2vw,1.5rem);
    display: flex;
    justify-content: center;
    align-items: center;
}

.operators {
    display: flex;
    flex-direction: column;
}

button {
    font-size: clamp(1rem,3vw,1.5rem);
    font-weight: 400;
    height: clamp(2.5rem,5vw,3.5rem);
    width: clamp(2.5rem,5vw,3.5rem);
    background-color: rgb(94, 82, 82);
    border: 0.1px solid rgb(70, 66, 66);
    border-radius: 50%;
    padding: 0.5rem;
    margin : 0.5rem;
    color: white;

}

.operators button {
    background-color: orange;
}

.reset-div {
    position: relative;
    left: -110px;
}

.reset {
    font-size: clamp(0.6rem,2vw,1rem);
    margin: 0px;
}