/* Import Outfit font from Google Fonts */
@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&display=swap");

body {
  font-family:
    "Outfit",
    system-ui,
    -apple-system,
    Roboto,
    sans-serif;
  background-color: #121212;
  color: #ffffff;
  line-height: 1.6;
  padding: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

h1 {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  text-align: center;
}

h2 {
  font-size: 1rem;
  margin-top: 2rem;
}

p {
  margin-bottom: 1rem;
}

ul,
ol {
  margin-bottom: 1rem;
  padding-left: 2rem;
}

li {
  margin-bottom: 0.5rem;
}

a {
  color: #ffffff;
}
