:root {
  color-scheme: light dark;
  --color-background: #DEE1E3;
  --color-text: #131516;
  --color-muted: #4B5358;
  --color-blue: #19647E;
  --color-aqua: #28AFB0;
  --color-yell: #F4D35E;
  --color-oran: #EE964B;
  --font-sans: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

@media (prefers-color-scheme: dark) {
  :root {
    --color-background: #131516;
    --color-text: #DEE1E3;
    --color-muted: #9DA5AA;
  }
}

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

html {
  min-height: 100%;
  font-family: var(--font-sans);
  -webkit-text-size-adjust: 100%;
  text-rendering: optimizeLegibility;
}

body {
  min-height: 100vh;
  margin: 0;
  background: var(--color-background);
  color: var(--color-text);
  font-family: inherit;
  font-size: 1rem;
  line-height: 1.5;
  display: flex;
  align-items: center;
}

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

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

main {
  width: 100%;
  min-height: 100%;
}

h1 {
  font-weight: normal;
  font-size: 1.25rem;
  text-align: center;
}

p {
  color: var(--color-muted);
  text-align: center;
}

a, a:visited, a:active {
  color: var(--color-aqua);
  text-decoration: none;
}

a:hover {
  color: var(--color-oran);
}