/* style.css */

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  margin: 2rem auto;
  padding: 0 1rem;
  max-width: 700px;
  line-height: 1.6;
  background-color: #fdfdfd;
  color: #333;
}

h1, h2 {
  color: #111;
  font-weight: 600;
}

h1 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

h2 {
  font-size: 1.4rem;
  margin-top: 1.5rem;
}

p {
  margin-bottom: 1rem;
}

ul {
  padding-left: 1.2rem;
  margin-bottom: 1rem;
}

a {
  color: #007aff;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}


