*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--color-bg);
}

body {
  min-width: 20rem;
  min-height: 100vh;
  min-height: 100dvh;
  margin: 0;
  color: var(--color-text);
  background:
    radial-gradient(circle at 15% 0%, rgb(45 109 127 / 22%), transparent 32rem),
    linear-gradient(165deg, #091522, var(--color-bg) 55%);
  line-height: 1.5;
}

button,
select,
input {
  font: inherit;
}

button {
  touch-action: manipulation;
}

h1,
h2,
h3,
p {
  margin-block-start: 0;
}

:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--color-accent), white 18%);
  outline-offset: 3px;
}

[hidden] {
  display: none !important;
}
