/* Reset / Normalize */
*, *::before, *::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body, h1, h2, h3, h4, h5, p, ul, ol, figure, blockquote {
  margin: 0;
}
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
}
ul, ol {
  list-style: none;
}
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}
button, input, select, textarea {
  font: inherit;
}
button {
  border: none;
  background: none;
}
a, a:link, a:visited {
  text-decoration: none;
}
:focus-visible {
  outline: 2px solid #CC0000;
  outline-offset: 2px;
}
