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

html, body {
  height: 100%;
}

body {
  background-color: #e8efe6;
  color: #2c2c2a;
  font-family: Georgia, 'Times New Roman', serif;
  display: flex;
  align-items: center;
  justify-content: center;
}

main {
  text-align: center;
}

h1 {
  font-size: clamp(1.75rem, 5vw, 3rem);
  font-weight: normal;
  letter-spacing: 0.04em;
  margin-bottom: 1.5rem;
}

a {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #2c2c2a;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  padding-bottom: 1px;
  opacity: 0.5;
  transition: opacity 0.2s ease;
}

a:hover {
  opacity: 1;
}
