* {
  padding: 0;
  margin: 0;
}
body {
  width: 100vw;
  height: 100vh;

  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #707b8d;
  font-family: sans-serif;
}
.calculator {
  width: 300px;
  padding-bottom: 15px;
  border-radius: 7px;
  background-color: rgb(49, 48, 48);
  box-shadow: 5px 8px 8px -2px rgba(0, 0, 0, 0.61);
}
.display {
  width: 100%;
  height: 80px;
  border: none;
  box-sizing: border-box;
  padding: 10px;
  font-size: 2rem;
  background-color: white;
  color: #000;
  text-align: right;
  border-top-left-radius: 7px;
  border-top-right-radius: 7px;
}
.row {
  display: flex;
  justify-content: space-between;
}
button {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: none;
  outline: none;
  font-size: 1.5rem;
  background-color: rgb(192, 180, 180);
  color: black;
  margin: 10px;
  box-shadow: 0px 0px 10px -2px #000000;
}
.number:hover {
  background-color: rgb(226, 212, 212);
  box-shadow: 0px 0px 10px -2px rgba(136, 125, 125, 0.61);
}
.operator:hover {
  background-color: #696d70;
  box-shadow: 0px 0px 10px 1px rgba(88, 86, 86, 0.61);
}

button:hover {
  cursor: pointer;
}
.operator {
  background-color: #505558;
  color: white;
}
