* {
  box-sizing: border-box;
}

html {
  scroll-padding-top: 5rem;
}

body {
  margin: 0;
  overflow-x: hidden;
}

:focus-visible {
  outline: 3px solid #f4b942;
  outline-offset: 3px;
}

.hero-image {
  filter: saturate(.9);
}

@media (prefers-reduced-motion: no-preference) {
  main > section:first-child h1,
  main > section:first-child p,
  main > section:first-child a {
    animation: rise-in .7s ease both;
  }

  main > section:first-child h1 { animation-delay: .08s; }
  main > section:first-child p { animation-delay: .16s; }
  main > section:first-child a { animation-delay: .24s; }
}

@keyframes rise-in {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}
