*,
*::after,
*::before {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
  font-family: "Space Mono", monospace;
  font-size: 1.1rem;
}

/* latin */
@font-face {
  font-family: "Space Mono";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/spacemono/v11/i7dMIFZifjKcF5UAWdDRaPpZUFWaHg.woff2) format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
.major-wrapper {
  display: grid;
  place-content: center;
  width: 100%;
  height: 100vh;
  background: linear-gradient(-45deg, rgb(35, 35, 35), #747474);
}

.calc-body {
  margin-inline: 35px;
  display: grid;
  grid-auto-flow: column;
  grid-template-columns: 3fr 2fr 1fr;
  align-items: center;
  font-size: 700;
  z-index: 2;
  background-color: rgba(44, 43, 43, 0.829);
  box-shadow: 0px 0px 8px 1px rgba(41, 40, 40, 0.468);
  padding: 30px;
  border-radius: 10px;
  gap: 20px;
}
@media screen and (max-width: 700px) {
  .calc-body {
    grid-auto-flow: row;
    grid-template-columns: 1fr;
  }
}

.calc-body__calc-display:focus {
  outline: rgba(255, 255, 255, 0.568) 2px solid;
}

button:focus {
  outline: rgba(255, 255, 255, 0.568) 2px solid;
}

.calc-body__calc-display {
  color: white;
  background: linear-gradient(90deg, rgb(64, 64, 64), #747474);
  padding: 10px;
  border: 0px;
  border-radius: 10px;
}

.numeric-btns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.numeric-btns button:last-child {
  grid-column: 1/-1;
}

.non-numeric-btns {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.non-numeric-btns button:nth-last-child(2), .non-numeric-btns button:nth-last-child(1) {
  grid-column: span 2;
}

button {
  border: 0px solid;
  color: rgb(225, 225, 225);
  box-shadow: 0px rgba(95, 95, 95, 0.46);
  padding: 5px;
  background: transparent;
}/*# sourceMappingURL=style.css.map */