*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: var(--vh);
  min-height: -webkit-fill-available;
  font-family: var(--font-body);
  font-size: var(--text-body-md);
  line-height: var(--lh-body);
  color: var(--color-on-surface);
  background: var(--color-surface);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-tap-highlight-color: transparent;
  padding-left: max(0px, var(--safe-left));
  padding-right: max(0px, var(--safe-right));
  padding-bottom: max(0px, var(--safe-bottom));
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

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

button {
  cursor: pointer;
  border: none;
  background: none;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

address {
  font-style: normal;
}

.material-symbols-outlined {
  font-variation-settings: 'FILL' 0, 'wght' 300, 'GRAD' 0, 'opsz' 24;
  vertical-align: middle;
  line-height: 1;
}

.text-display-lg {
  font-family: var(--font-display);
  font-size: var(--text-display-lg);
  font-weight: 700;
  line-height: var(--lh-display);
  letter-spacing: -0.02em;
}

.text-headline-lg {
  font-family: var(--font-display);
  font-size: var(--text-headline-lg);
  font-weight: 600;
  line-height: var(--lh-headline);
  letter-spacing: -0.01em;
}

.text-headline-md {
  font-family: var(--font-display);
  font-size: var(--text-headline-md);
  font-weight: 500;
  line-height: 1.33;
  letter-spacing: 0.02em;
}

.text-body-lg {
  font-size: var(--text-body-lg);
  line-height: 1.56;
  letter-spacing: 0.01em;
}

.text-body-md {
  font-size: var(--text-body-md);
  line-height: var(--lh-body);
  letter-spacing: 0.01em;
}

.text-label-caps {
  font-size: var(--text-label-caps);
  font-weight: 700;
  line-height: 1.33;
  letter-spacing: var(--ls-label);
  text-transform: uppercase;
}

.text-muted {
  color: var(--color-on-surface-variant);
}

.text-primary {
  color: var(--color-primary);
}

.text-outline {
  color: var(--color-outline);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms;
    animation-iteration-count: 1;
    transition-duration: 0.01ms;
  }
}
