* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --color-black: #000;
  --color-black-rgb: 0, 0, 0;
  --color-shadow: #b64828;
  --color-dark-gray: #1b201e;
  --color-bg: linear-gradient(180deg, #007fc4, #8fbce5);
  --color-white: #fff;
  --color-white-rgb: 255, 255, 255;
  --grad-button: linear-gradient(180deg, #be2b00, #1b201e);
  --grad-button-hover: linear-gradient(0deg, #be2b00, #1b201e);
  --grad-bg: linear-gradient(0deg, #973a1f, #1b201e 50%, #973a1f);
  --grad-icon: linear-gradient(0deg, #3a3d3c, #fff 50%, #3a3d3c);
  --leading-trim: calc((1em - 1lh) / 2);
}

:where(html) {
  font-feature-settings: "palt";
  min-width: 320px;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
  overflow-y: scroll;
  overscroll-behavior: contain;
  font-size: 0.7320644217vw;
}

:where(button) {
  all: unset;
  appearance: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}

:where(button):focus-visible {
  outline: auto;
}

:where(button):focus {
  outline: none;
}

:where(input, button, textarea, select) {
  font: inherit;
  color: inherit;
}

:where(textarea) {
  resize: vertical;
  resize: block;
}

:where(button, label, select, summary, [role=button], [role=option]) {
  cursor: pointer;
}

:where(a) {
  color: inherit;
  text-decoration: none;
}

:where(svg, video, canvas, iframe) {
  display: block;
}

:where(img) {
  vertical-align: top;
  width: 100%;
  max-width: 100%;
}

ul,
ol {
  list-style: none;
}

@media only screen and (max-width: 767.8px) {
  :where(html) {
    font-size: 1.3333333333vw;
    overscroll-behavior: none;
  }
}