/* Global Style */
body {
  margin: 0;
  font-family: "Georgia", serif;
  background: #f9f9f9;
  color: #222;
  line-height: 1.6;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

/* Main Layout */
main {
  max-width: 700px;
  padding: 2rem;
  background: #fff;
  border: 1px solid #ddd;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  border-radius: 8px;
}

/* Headings */
h1 {
  font-size: 2rem;
  margin-bottom: 0.25rem;
}

.tagline {
  font-style: italic;
  color: #555;
  margin-bottom: 1rem;
}

/* Contact */
.contact a {
  text-decoration: none;
  color: #0044cc;
  font-weight: bold;
}

.contact a:hover {
  text-decoration: underline;
}

/* Affiliations */
.affiliations {
  margin-top: 2rem;
}

.affiliations h2 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.affiliations ul {
  list-style: none;
  padding: 0;
}

.affiliations li {
  padding: 0.25rem 0;
  border-bottom: 1px solid #eee;
}

/* Footer */
footer {
  margin-top: 2rem;
  font-size: 0.85rem;
  text-align: center;
  color: #888;
}
