/* === Reset & Baseline === */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  height: 100%;
  -webkit-text-size-adjust: 100%; /* prevent iOS text zoom */
}

body {
  min-height: 100%;
  width: 100%;
  background-color: #ffffff;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: #111;
  margin-top: 120px;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* === Headings === */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.25;
  margin-bottom: 1rem;
  text-align: center;
}

/* === Text Elements === */
p {
  margin-bottom: 1rem;
}

/* === Links === */
a {
  color: inherit;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

/* === Layout Helpers === */
main {
  text-align: center;
  display: block;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
}

/* === Footer === */
footer {
  text-align: center;
  margin-top: 3rem;
  padding: 1rem;
  font-size: 0.9rem;
  color: #555;
  border-top: 1px solid #eee;
}
