:root {
  color-scheme: light dark;
  font-family: "Inconsolata Mono", monospace;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  text-wrap: balance;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@media (prefers-color-scheme: light) {
  :root {
    color: hsl(0, 0%, 7%);
    background-color: hsl(0, 0%, 100%);
  }
}
@media (prefers-color-scheme: dark) {
  :root {
    color: hsl(0, 0%, 100%);
    background-color: hsl(0, 0%, 7%);
  }
}

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

section {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  text-align: center;
  letter-spacing: 1px;
}

h1 {
  font-size: 3.75rem;
  line-height: 1.2;
  color: hsl(257, 37%, 74%);
}
@media (max-width: 767px) {
  h1 {
    font-size: 2.75rem;
  }
}

h2 {
  margin: 0.5rem 0 1.25rem 0;
  font-size: 1.75rem;
  font-weight: 500;
  line-height: 1.2;
}
@media (max-width: 767px) {
  h2 {
    font-size: 1.5rem;
  }
}

p {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
}
@media (max-width: 767px) {
  p {
    font-size: 1rem;
  }
}/*# sourceMappingURL=styles.css.map */