/* ===== Base Styles ===== */
body {
  background-color: black;
  color: white;
  font-family: system-ui, sans-serif;
  font-variation-settings: "wght" 350, "wdth" 100;
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  text-align: center;
}

/* ===== Headings & Text ===== */
h1 {
  color: seagreen;
  margin-bottom: 1rem;
}

h2 {
  color: whitesmoke;
  font-style: italic;
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1rem;
}

/* ===== Lists ===== */
ol {
  color: white;
  text-align: left;
  margin: 1rem auto;
  padding-left: 1.5rem;
  max-width: 600px;
}

/* ===== Forms ===== */
form {
  color: #3ddb7e;
  margin-top: 1.5rem;
}

/* ===== Links ===== */
a {
  margin: 0.2rem;
  transition: color 0.2s ease, text-decoration 0.2s ease;
}

a:link, a:visited {
  color: #3ddb7e;
  text-decoration: none;
}

a:hover {
  color: white;
  text-decoration: underline;
}

a:active {
  color: seagreen;
}
