@import url("https://fonts.googleapis.com/css2?family=Arbutus+Slab&family=Archivo+Black&family=Archivo:wght@400;700;900&family=Raleway:ital,wght@0,600;1,500;1,800&display=swap");
* {
  margin: 0;
  padding: 0;
}

html {
  max-width: 100vw;
  font-size: 16px;
}

body {
  overflow-x: hidden;
}

h1 {
  font-family: "Arbutus Slab", serif;
  font-size: 3em;
}
@media only screen and (min-device-width: 300px) and (max-device-width: 812px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: portrait) {
  h1 {
    font-size: 2em;
  }
}
@media only screen and (min-device-width: 319px) and (max-device-width: 812px) and (-webkit-min-device-pixel-ratio: 3) and (orientation: landscape) {
  h1 {
    font-size: 2em;
  }
}
@media only screen and (min-width: 600px) and (max-width: 1024px) and (min-device-width: 481px) and (max-device-width: 1280px) and (orientation: portrait) {
  h1 {
    font-size: 2em;
  }
}
h1 strong {
  font-family: "Archivo Black", sans-serif;
  font-weight: 800;
  text-transform: uppercase;
}
h1 strong a {
  color: white;
}

h2 {
  font-family: "Arbutus Slab", serif;
  font-size: 1.5em;
}
@media only screen and (min-device-width: 300px) and (max-device-width: 812px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: portrait) {
  h2 {
    font-size: 1em;
  }
}
@media only screen and (min-device-width: 319px) and (max-device-width: 812px) and (-webkit-min-device-pixel-ratio: 3) and (orientation: landscape) {
  h2 {
    font-size: 1em;
  }
}
@media only screen and (min-width: 600px) and (max-width: 1024px) and (min-device-width: 481px) and (max-device-width: 1280px) and (orientation: portrait) {
  h2 {
    font-size: 1em;
  }
}
@media only screen and (min-width: 647px) and (max-width: 1280px) and (min-device-width: 1281px) {
  h2 {
    font-size: 1em;
  }
}
@media only screen and (min-width: 1281px) and (max-width: 1660px) {
  h2 {
    font-size: 1em;
  }
}
h2 strong {
  font-family: "Archivo Black", sans-serif;
  font-weight: 800;
  text-transform: uppercase;
}

p {
  font-family: "Raleway", sans-serif;
  font-size: 1em;
  line-height: 140%;
}
@media only screen and (min-width: 1921px) {
  p {
    font-size: 1.5em;
  }
}
p strong {
  font-family: "Archivo", sans-serif;
  font-weight: 600;
  font-size: 1em;
}

a {
  color: white;
  text-decoration: none;
}
a h2 {
  text-align: center;
}
a h2 strong {
  text-decoration: underline;
}

.calculator {
  display: flex;
  flex-direction: column;
}
.calculator .calculator-container {
  display: flex;
  width: 15vw;
  flex-direction: column;
  background: #f195ba;
  gap: 1vh;
  border-radius: 30px;
  overflow: hidden;
  padding: 2vh;
}
@media only screen and (min-device-width: 300px) and (max-device-width: 812px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: portrait) {
  .calculator .calculator-container {
    width: 80vw;
  }
}
@media only screen and (min-width: 600px) and (max-width: 1024px) and (min-device-width: 481px) and (max-device-width: 1280px) and (orientation: portrait) {
  .calculator .calculator-container {
    width: 80vw;
  }
}
@media only screen and (min-device-width: 319px) and (max-device-width: 812px) and (-webkit-min-device-pixel-ratio: 3) and (orientation: landscape) {
  .calculator .calculator-container {
    width: 80vw;
  }
}
.calculator .calculator-container .number-row {
  width: 100%;
  height: 10vh;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.calculator .calculator-container .number-row .first-row {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.calculator .calculator-container .number-row .first-row .result {
  width: 80%;
  display: flex;
  flex-direction: row;
}
.calculator .calculator-container .number-row .first-row .result .reservation_nbr {
  color: #c5e6f4;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80%;
  height: 100%;
  font-size: 3rem;
  font-weight: 700;
}
.calculator .calculator-container .number-row .first-row .result .delete {
  background: transparent;
  border: none;
  font-size: 3rem;
  justify-self: flex-end;
  color: #c5e6f4;
}
.calculator .calculator-container .number-row .first-row .result .delete:hover {
  color: #324798;
}
.calculator .calculator-container .number-row .first-row .operator {
  gap: 1vh;
  width: 20%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2rem;
  font-weight: 700;
  color: white;
  border-radius: 20px;
  background-color: #c5e6f4;
}
.calculator .calculator-container .number-row .first-row .operator:hover {
  background-color: #324798;
}
.calculator .calculator-container .number-row .first-row .operator:active {
  background-color: #f195ba;
}
.calculator .calculator-container .number-row .number-style {
  border-radius: 20px;
  margin: 0 1vh;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2rem;
  font-weight: 700;
  color: white;
  background-color: #324798;
}
.calculator .calculator-container .number-row .number-style:hover {
  background-color: #c5e6f4;
}
.calculator .calculator-container .number-row .number-style:active {
  background-color: #f195ba;
}
.calculator .calculator-container .number-row .validate {
  background-color: #324798;
}
.calculator .calculator-container .number-row .validate:hover {
  background-color: #c5e6f4;
}

/*# sourceMappingURL=style-calculator.css.map */
