@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@100&display=swap");
body {
  margin: 0;
  background-color: #1d293a;
  font-family: "Playfair Display", serif;
}

#cal-wrapper {
  width: 370px;
  background-color: #1d293a;
  margin: 0 auto;
  margin-top: 50px;
  padding: 12px;
  box-sizing: border-box;
}

#input-wrapper {
  width: 100%;
  box-sizing: border-box;
  padding: 0 12px;
}

#input-box {
  width: 100%;
  height: 70px;
  background-color: transparent;
  display: inline-block;
  outline: none;
  border: none;
  color: #b9b9b9;
  font-size: 44px;
  text-align: right;
  font-weight: 100;
  font-family: "Roboto", sans-serif;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

#input-box-small {
  width: 60%;
  background-color: transparent;
  display: inline-block;
  outline: none;
  border: none;
  color: #b9b9b9;
  font-size: 24px;
  font-weight: 100;
  font-family: "Roboto", sans-serif;
  /* word-wrap: break-word;
  overflow: hidden;
  text-overflow: ellipsis; */
}

#numbers-wrapper {
  width: 100%;
}

#numbers-wrapper > div {
  width: 100%;
  display: flex;
}

#numbers-wrapper > div button {
  background-color: #354357;
  color: #eaeaea;
  outline: none;
  border: none;
}

#numbers-wrapper > div button:hover {
  background-color: #35435783;
  transform: scale(1.1, 1.1);
}

.numbers {
  width: 25%;
  font-size: 26px;
  margin: 8px;
  font-weight: 500;
}

.operators {
  width: 25%;
  font-size: 30px;
  margin: 8px;
  padding: 10px;
}

.operators-text {
  width: 25%;
  font-size: 20px;
  margin: 8px;
  padding: 10px;
  font-weight: 400;
}

#num0 {
  width: 51%;
  font-size: 26px;
  margin: 8px;
  padding: 8px;
  font-weight: 500;
}

#operator-dot {
  width: 24%;
  font-size: 34px;
  margin: 8px;
  padding: 8px;
}

#operator-equals {
  width: 24%;
  font-size: 34px;
  margin: 8px;
  padding: 8px;
}


}
