:root {
  --page-bg: #ffffff;
  --ink: #111111;
  --muted: #4a4a4a;
}

* {
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

body {
  margin: 0;
  background: var(--page-bg);
  color: var(--ink);
  font-family: "Times New Roman", Times, serif;
}

a {
  color: var(--ink);
}

a:visited {
  color: var(--ink);
}

.card {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(20px, 4vw, 48px) clamp(24px, 6vw, 64px);
}

.row {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
}

.center {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.center h1 {
  font-variant: small-caps;
  font-weight: 700;
  font-size: clamp(2rem, 6vw, 3.6rem);
  letter-spacing: 0.02em;
  margin: 0;
}

.center .position {
  font-variant: small-caps;
  letter-spacing: 0.05em;
  font-size: clamp(1rem, 2vw, 1.35rem);
  margin: 12px 0 0;
}

.center .contact {
  margin: 18px 0 0;
  font-size: clamp(0.85rem, 1.5vw, 1.05rem);
  letter-spacing: 0.03em;
}

.center .contact a {
  color: var(--ink);
  text-decoration: none;
}

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

.center .contact .sep {
  margin: 0 10px;
  color: var(--muted);
}

.row.bottom {
  justify-content: center;
}

.row.bottom .previously {
  color: var(--ink);
  font-size: clamp(0.8rem, 1.4vw, 1rem);
  letter-spacing: 0.06em;
  margin: 0;
  text-align: center;
}

.row.bottom .previously .sep {
  color: black;
}

@media (max-width: 560px) {
  .center .contact {
    display: flex;
    flex-direction: column;
    gap: 6px;
  }

  .center .contact .sep {
    display: none;
  }
}
