@media (prefers-color-scheme:light) {
  :root {
    --elementcolor: linear-gradient(#FFCFE3, #E582FF);
    --elementbordercolor: #E582FF;
    --costtextcolor: #23021a;
    --costbackground: #FFCFE360;
  }
}
@media (prefers-color-scheme:dark) {
  :root {
    --elementcolor: linear-gradient(#CE458F, #7D004F);
    --elementbordercolor: #7D004F;
    --costtextcolor: #f1c2e4;
    --costbackground: #7d004f8f;
  }
  .costAmount {
    text-shadow: 0 0 0.25em var(--costtextcolor);
  }
}
@media (orientation:landscape) {
  :root {
    --infoWidth: 50vw;
  }
  .example-full {
    width: 702px;
    height: 90px;
  }
}
@media (orientation:portrait) {
  :root {
    --infoWidth: 70vw;
  }
  .example-full {
    width: 351px;
    height: 45px;
  }
}
#main {
  min-height: 80vh;
  margin: 2em 0;
  flex-direction: column;
}
.pricingBox {
  background: var(--elementcolor);
  background-size: cover;
  border: 2px solid var(--elementbordercolor);
  border-radius: 0.25em;
  box-shadow: 0em 0em 0.5em var(--shadowcolor);
  padding-bottom: 0.5em;
}
.pricingBox p {
  font-size: 1.25em;
  margin-left: 0.75em;
}
.costBox {
  flex-direction: column;
  width: 10em;
  height: 10em;
  margin: 1em;
  background: var(--costbackground);
  border: 2px solid var(--elementbordercolor);
  border-radius: 0.25em;
  /* box-shadow: inset -2px -2px #eca8da, inset 2px 2px #b7579e; */
}
.costAmount {
  position: relative;
  font-family: 'BlenderPro', monospace;
  font-weight: bold;
  font-size: 4em;
  color: var(--costtextcolor);
  width: 1.75em;
}
.costAmount span {
  position: absolute;
  bottom: 0.25em;
  font-size: 0.9em;
}
.costCycle {
  font-family: 'BlenderPro', monospace;
  font-size: 1em;
  color: var(--costtextcolor);
}
.example-full, .example-half {
  display: block;
}
.example-half {
  width: 351px; 
  height: 90px;
}
.infoBox {
  margin: 1em;
  padding: 0.5em 2em;
  width: fit-content;
  max-width: var(--infoWidth);
  background: var(--elementcolor);
  border: 2px solid var(--elementbordercolor);
  border-radius: 0.25em;
}
.infoBox p, .infoBox h2 {
  text-shadow: none;
}