* {
  margin: 0;
  padding: 0;
  font-family: "Poppins";
}

#page {
  display: grid;
  height: 100vh;
  width: 100vw;
  place-items: center;
  font-family: "Poppins";
  background-color: #ddd4c8;
}

#calc {
  background-color: #0d0d0d;
  height: 75vh;
  width: 30vw;
  border-radius: 5%;
  padding: 5vh 3vw;
  box-shadow: 10px 10px 50px black;
}

.output {
  /* border: 2px solid white; */
  height: 25%;
  display: flex;
  align-items: center;
  justify-content: end;
}

.text {
  color: white;
  font-size: 70px;
}

.input {
  /* border: 2px solid red; */
  height: 70%;
  width: 100%;
  display: grid;
  grid-template-columns: auto auto auto auto;
  grid-template-rows: auto auto auto auto auto;
  place-items: end;
}

.btn {
  height: 80%;
  width: 80%;
  border-radius: 50%;
  font-size: 25px;
  border: none;
}