html {
  background-color: var(--color-header);
  overflow-x: clip;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--color-primary-text);
  background:
    radial-gradient(
      ellipse 58% 34% at 50% 21%,
      rgba(55, 35, 55, 0.55) 0%,
      rgba(30, 27, 44, 0.35) 36%,
      rgba(11, 20, 36, 0) 76%
    ),
    var(--color-header);
  background-attachment: scroll;
  overflow-x: clip;
}

main {
  width: 100%;
}

:focus {
  outline: none;
}

:focus-visible {
  outline: 2px solid var(--color-focus);
  outline-offset: 3px;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.break-desktop {
  display: none;
}

@media (min-width: 768px) {
  .break-desktop {
    display: inline;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
