*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  height: 100%;
}

body {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #0b1d36;
  background-image: radial-gradient(ellipse at center, #13294a 0%, #0b1d36 60%, #061327 100%);
  color: #f5f1e8;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-align: center;
  padding: 1.5rem;
}

main {
  max-width: 640px;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

h1 {
  font-family: "Cormorant Garamond", "Garamond", "Hoefler Text", Georgia, "Times New Roman", serif;
  font-size: clamp(2.75rem, 8vw, 4.75rem);
  font-weight: 500;
  color: #f5f1e8;
  letter-spacing: -0.015em;
  line-height: 1.05;
}

.tagline {
  margin-top: 1.5rem;
  font-size: clamp(1rem, 2.2vw, 1.25rem);
  font-weight: 400;
  color: #c9b88a;
  letter-spacing: 0.02em;
  line-height: 1.5;
}

.contact {
  margin-top: 2.25rem;
  font-size: 1rem;
  letter-spacing: 0.01em;
}

.contact a {
  color: #f5f1e8;
  text-decoration: none;
  border-bottom: 1px solid rgba(201, 184, 138, 0.4);
  padding-bottom: 2px;
  transition: border-color 160ms ease, color 160ms ease;
}

.contact a:hover,
.contact a:focus-visible {
  color: #c9b88a;
  border-bottom-color: #c9b88a;
}

footer {
  padding-top: 2rem;
}

footer small {
  font-size: 0.75rem;
  color: rgba(245, 241, 232, 0.4);
  letter-spacing: 0.04em;
}
