* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  background-color: #f7f7f7;
}

.calculator {
  width: 300px;
  background-color: #464646;
  border-radius: 10px;
  box-shadow: 0px 4px 4px #00000040;
  font-family: "Helvetica Neue", sans-serif;
  overflow: hidden;
}

.display {
  padding: 10px 20px;
  text-align: right;
  color: #fff;
}

.expression {
  font-size: 1rem;
  color: #b5b5b5;
  min-height: 20px;
}

.result {
  font-size: 2.5rem;
  font-weight: bold;
  min-height: 45px;
}

.buttons {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 1px;
}

.buttons button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 60px;
  color: #fff;
  font-size: 1.5rem;
  font-weight: bold;
  border: none;
  outline: none;
  cursor: pointer;
}

.button-zero {
  grid-column: span 2;
}

.bg-gray {
  background-color: #585858;
}

.bg-light-gray {
  background-color: #747474;
}

button:active {
  opacity: 0.9;
}

.bg-orange {
  background-color: #f2a43b;
}
