* {
  box-sizing: border-box;
}

html {
  height: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  min-width: 320px;
  height: 100%;
  margin: 0;
  overflow: hidden;
  text-rendering: optimizeLegibility;
}

img,
video {
  display: block;
  max-width: 100%;
}

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

button {
  font: inherit;
}

h1,
h2,
h3,
p {
  margin: 0;
}

a:focus-visible,
button:focus-visible,
label:focus-visible {
  outline: 3px solid rgba(95, 126, 137, 0.42);
  outline-offset: 4px;
}