* {
  margin: 0;
  padding: 0;
}

body {
  background-color: rgb(24, 22, 20);
  font-family: "Orbitron", sans-serif;
  height: 100vh;
}
body .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
body .container #display-screen {
  color: white;
  font-size: 1.3rem;
  text-align: center;
  margin-bottom: 1.5%;
  margin-top: 0.5rem;
  height: 2.5rem;
  width: 10rem;
  padding: 3rem;
  border: solid white 0.124rem;
  border-radius: 10px;
}
body .container #display-screen #display-result {
  float: right;
  color: rgb(255, 235, 175);
}
body .container #display-screen #display-input {
  float: left;
  padding-top: 1rem;
}
body .container .btn-grid {
  justify-items: center;
  align-items: center;
  padding: 1rem;
  border: solid white 0.2rem;
  display: grid;
  grid-auto-flow: row;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-template-rows: 1fr 1fr 1fr 1fr 1fr;
  grid-template-areas: "ac negate percent divide" "seven eight nine multiply" "four five six minus" "one two three plus" "zero zero dot equals";
  align-items: center;
  background-color: rgb(44, 42, 40);
  border-radius: 10px;
}
body .container .btn-grid .btn-grid-item {
  background-color: rgb(194, 194, 194);
  width: 2.8rem;
  height: 2.8rem;
  font-family: "Orbitron", sans-serif;
  font-weight: 800;
  border-radius: 10px;
  margin: 0.05rem;
}
body .container .btn-grid .btn-grid__number {
  background-color: rgb(101, 101, 101);
}
body .container .btn-grid #zero {
  grid-column: span 2;
  width: 5.6rem;
}
body .container .btn-grid .btn-grid__number:active {
  border-radius: 35%;
  background-color: rgb(43, 43, 43);
}
@media screen and (min-width: 768px) {
  body .container .btn-grid {
    padding: auto;
  }
  body .container .btn-grid .btn-grid-item {
    width: 3rem;
    height: 3rem;
    font-size: 1.2rem;
  }
}
@media screen and (min-width: 1000px) {
  body .container .btn-grid {
    padding: auto;
  }
  body .container .btn-grid .btn-grid-item {
    width: 7.5rem;
    height: 7.5rem;
    font-size: 3rem;
  }
}/*# sourceMappingURL=style.css.map */