* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-size: 22px;
  color: #fff;
}

body {
  background: linear-gradient(to right, #f12711, #f5af19);
  height: 100vh;
  padding-top: 130px;
  font-family: Arial, sans-serif;
}

.calculator {
  width: 310px;
  min-height: 490px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background-color: #000;
  border-radius: 10px;
  margin: 0 auto;
  padding: 20px;
}
.calculator__display {
  min-height: 100px;
  margin: 0 10px;
  font-size: 47px;
  display: flex;
  align-items: end;
  justify-content: end;
  overflow: hidden;
}
.calculator__buttons {
  height: 320px;
  display: grid;
  grid-template-columns: repeat(4, 60px);
  grid-template-rows: repeat(5, 60px);
  gap: 10px;
}
.calculator__button {
  border-radius: 50%;
  background-color: #3e3e3e;
  border: none;
  cursor: pointer;
}
.calculator__button-zero {
  grid-column: 1/3;
  border-radius: 30px;
  display: flex;
  align-items: center;
  padding-left: 25px;
}
.calculator__button-gray {
  background-color: #9a9797;
  color: #000;
}
.calculator__button-orange {
  background-color: #df5f14;
}/*# sourceMappingURL=style.css.map */