:root {
  font-family:
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Oxygen,
    Ubuntu,
    Cantarell,
    "Open Sans",
    "Helvetica Neue",
    sans-serif;

  --failure: #f54927;
  --success: #6cf52766;
  --success-dark: #2cb50733;
  --primary: #b027f5;
  --reserve: #4169e155;
  --reserve-dark: #0129b1;
  --reserve-glass: #4169e1aa;
  --reserve-glass-2: #4169e111;
  --blacken: #000000;
  --lighten: #ffffff;
  --backgrd: #001111;
  --backgrd-lighten: #11222222;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  line-height: 1.5;
  background-color: var(--backgrd);
  color: var(--lighten);
}

h1,
h2,
h3,
h4 {
  line-height: 1.1;
}

input,
button,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
}

img {
  display: block;
  max-inline-size: 100%;
}

body {
  margin: auto;

  max-width: 412px;

  @media (min-width: 576px) {
    max-width: 460px;
  }

  @media (min-width: 768px) {
    max-width: 600px;
  }

  @media (min-width: 992px) {
    max-width: 800px;
  }

  @media (min-width: 1200px) {
    max-width: 1024px;
  }

  @media (min-width: 1400px) {
    max-width: 1200px;
  }
}

@keyframes fadeOut {
  100% {
    opacity: 1;
  }
}
