* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

.container {
  width: 100%;
  height: 100vh;
  background: #e3f9ff;
  display: flex;
  justify-content: center;
  align-items: center;
}
.container .calculator {
  background-color: #3a4452;
  padding: 20px;
  border-radius: 10px;
}
.container .calculator form input {
  border: 0;
  outline: none;
  width: 60px;
  height: 60px;
  border-radius: 10px;
  box-shadow: -8px -8px 15px rgba(230, 218, 218, 0.1), 5px 5px 15px rgba(0, 0, 0, 0.1);
  background: transparent;
  font-size: 20px;
  color: #fff;
  cursor: pointer;
  margin: 10px;
}
.container .calculator form input.equal {
  width: 145px;
}
.container .calculator form input.operator {
  color: #33ffd8;
}
.container .calculator form input:hover {
  background-color: rgba(85, 11, 65, 0.3568627451);
}
.container .calculator .display {
  display: flex;
  justify-content: flex-end;
  margin: 20px 0;
}
.container .calculator .display input {
  flex: 1;
  text-align: right;
  font-size: 45px;
  box-shadow: none;
}/*# sourceMappingURL=style.css.map */