* {
  box-sizing: border-box;
  margin: 0px;
  padding: 0px;
}

html, body {
  min-height: 100vh;
}

body {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  gap: 0px;
  background-color: #000;
  position: relative;
}

.calculator {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
  gap: 0px;
  width: 500px;
  height: 500px;
  background-color: #000;
  border-radius: 12px;
  border: 2px solid #0af;
  padding: 20px;
}
.calculator .operation {
  width: 100%;
  height: 20%;
  background-color: transparent;
  text-align: end;
  font-size: 3rem;
  color: #fff;
  overflow-x: scroll;
}

.operators {
  width: 100%;
  height: 80%;
  background-color: transparent;
  border-radius: 12px;
  border: 2px solid #0af;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: repeat(5, 1fr);
  overflow: hidden;
}
.operators .equal {
  grid-column: 4/span 2;
}
.operators div {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  gap: 0px;
  width: 100%;
  height: 100%;
  background-color: transparent;
  color: #fff;
  font-size: 40px;
}
.operators div:hover {
  cursor: pointer;
  background-color: rgba(128, 128, 128, 0.5);
}/*# sourceMappingURL=styles.css.map */