.legacy-calculator-page {
  display: grid;
  min-height: calc(100vh - var(--header-height));
  padding: 42px 20px;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.16), rgba(0, 0, 0, 0.16)),
    url("./background.png");
  background-position: center;
  background-size: cover;
  box-sizing: border-box;
  place-items: center;
}

.legacy-calculator {
  padding: 26px 38px 30px;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.32);
  color: #f5bc0d;
  font-family: Georgia, serif;
  text-align: center;
  backdrop-filter: blur(3px);
}

.legacy-calculator h1 {
  margin-top: 0;
}

.legacy-calculator .box {
  width: 220px;
  height: 20px;
  border: 2px solid #ffd63f;
  background-color: #fffdd0;
}

.legacy-calculator .next {
  width: 150px;
  height: 40px;
  border: 2px solid #f5bc0d;
  background-color: #00c8ff;
  color: #ffffff;
  cursor: pointer;
}

.legacy-graph-page {
  min-height: calc(100vh - var(--header-height));
  padding: 18px 24px 30px;
  background: #ffffff;
  box-sizing: border-box;
  color: #f5bc0d;
  font-family: Georgia, serif;
  text-align: center;
}

.back-to-calculator {
  display: block;
  width: max-content;
  margin: 0 0 8px;
  color: #9e6a10;
  font-family:
    Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

#container {
  width: 100%;
  height: calc(100vh - var(--header-height) - 64px);
  min-height: 520px;
}
