/* Background */
body {
  margin: 0;
  min-height: 100vh;
  background-image: url("images/background.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  font-family: system-ui, -apple-system, sans-serif;
  color: #fff;
}

/* Dark overlay for readability */
.overlay {
  min-height: 100vh;
  background: rgba(0, 0, 0, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Content card */
.card {
  max-width: 500px;
  padding: 2.5rem 2rem;
  text-align: center;
}

.headshot {
  width: 100%;
  max-width: 320px;
  border-radius: 6px;
  margin-bottom: 1.75rem;
}

/* Text */
h1 {
  margin: 0 0 1rem;
  font-size: 2rem;
  font-weight: 600;
}

.blurb {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

/* Links */
.links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

.links a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px solid transparent;
}

.links a:hover {
  border-bottom: 1px solid #fff;
}
