.calc {
 font-family: Arial, sans-serif;
 display: flex;
 justify-content: center;
 align-items: center;
}
.calculator {
 width: 400px;
 background-color: #fff;
 border-radius: 10px;
 box-shadow: 0px 4px 10px rgba(0,0,0,0.2);
 padding: 20px;
}
.display {
 width: 100%;
 text-align: right;
 font-size: 1.5rem;
 margin-bottom: 20px;
 height: 75px;
line-height: 51px;
padding: 0 20px;
outline: none;
font-size: 15px;
color: #808080;
margin: 0 0 16px 0;
max-width: 100%;
width: 100%;
box-sizing: border-box;
display: block;
background-color: #fcfcfc;
font-weight: 500;
border: 1px solid #e0e0e0;
/* opacity: 1; */
border-radius: 3px;
position:relative;
}
.buttons {
 display: grid;
 grid-template-columns: repeat(4, 1fr);
 gap: 10px;
}
.buttons button {
 padding: 15px;
 font-size: 1.5rem;
 border-radius: 5px;
 border: none;
 background-color: #00B16A;
 color: white;
 font-weight:600;
}
.buttons button:hover {
 background-color: #0288d1;
}
#divide{
font-size:22px;
}
#dot{
font-size:22px;
}
#back{
font-size:22px;
}
#showValue{
    font-size:x-large;
}
#finalResult{
    position:absolute;
    font-size:large;
    color:#00B16A;
    top:35px;
    right:20px;
}