/* Reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Base */
body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, Helvetica, Arial, sans-serif;
  background: white;
  color: #111;
  line-height: 1.6;
  text-align: center;
}

/* Header */
header {
  padding: 3rem 1rem 2rem;
}

.medallion {
  width: 300px;
  height: 300px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  overflow: hidden;
  background: white;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);

  display: flex;
  align-items: center;
  justify-content: center;
}

.medallion img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
}

/* Title */
h1 {
  font-size: 2.2rem;
  font-weight: 600;
}

/* Main content */
main {
  max-width: 640px;
  margin: 2rem auto 0;
  padding: 0 1.5rem;
}

p {
  margin-bottom: 1.25rem;
  font-size: 1.05rem;
  color: #333;
}

.highlight {
  font-weight: 500;
  color: #000;
}

/* Button */
.button {
  display: inline-block;
  margin-top: 1.75rem;
  padding: 0.9rem 1.8rem;
  background: #000;
  color: #fff;
  text-decoration: none;
  font-size: 0.95rem;
  border-radius: 999px;
}

.button:hover {
  opacity: 0.85;
}

/* Footer */
footer {
  margin-top: 3rem;
  padding-bottom: 3rem;
  font-size: 0.85rem;
  color: #666;
}

/* Footer navigation */
.footer-nav {
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
}

.footer-nav a {
  color: #111;
  text-decoration: none;
}

.footer-nav a:hover {
  text-decoration: underline;
}

.footer-nav span {
  margin: 0 0.5rem;
  color: #999;
}
