body {
    background-color: burlywood;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    width: 100vw;
    margin: 0;
    padding: 0;
}

#calculator {
    width: 400px;
    height: 564px;
    background-color:grey;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#screen {
    display: flex;
    flex-direction: column;
    justify-content: end;
    align-items: end;
    width: 356px;
    height: 120px;
    margin-bottom:15px ;
    background-color: aquamarine;
}

.clear-delete {
    width: 173px;
    height:68px ;
}

#clear {
    background-color:#00fd15;
}

#delete {
    background-color: crimson;
}

.operators {
    background-color: rgb(255, 176, 29);
}

button {
    width: 81.5px;
    height: 68px;
    margin: 3px;
    cursor: pointer;
}

/* styling for dynamic elements*/
.empty-space {
    height: 60px;
}

.below {
    font-size: 40px;
    margin-bottom: 0px;
    margin-right: 5px;
}

.above {
    display: flex;
    gap: 5px;
    font-size: 22px;
    margin-bottom: 10px;
    margin-right: 5px;
}