* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  color-scheme: dark;
  scroll-behavior: smooth;
}

body {
  display: flex;
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  flex-direction: column;
  background: radial-gradient(circle at 50% -10%, rgba(255, 48, 48, 0.18), transparent 35%), var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
}

main {
  flex: 1 0 auto;
  width: 100%;
}

a {
  color: inherit;
}

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

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

.skip-link {
  position: absolute;
  top: 0;
  left: -999px;
}

.skip-link:focus {
  left: 1rem;
  z-index: 1000;
  padding: 0.75rem 1rem;
  background: var(--color-action);
  color: #000;
}

::selection {
  background: var(--color-action);
  color: #000;
}
