/* Base reset */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, Helvetica, Arial, sans-serif;
  color: #111;
  background-color: #fff;
  line-height: 1.6;
}

/* Layout */
.container {
  max-width: 720px;
  padding: 48px 24px;
  margin: 0 auto;
}

/* Typography */
h1 {
  font-size: 2.2rem;
  margin-bottom: 0.5em;
}

p {
  font-size: 1rem;
  margin-bottom: 1em;
}

/* Footer */
footer {
  margin-top: 48px;
  padding-top: 16px;
  border-top: 1px solid #eee;
  font-size: 0.9rem;
}

footer a {
  margin-right: 12px;
}

/* Links */
a {
  color: #0066ff;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}
