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

html, body {
  height: 100%;
}

body {
  background-color: #FAF8F5;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Lora', Georgia, serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

main {
  text-align: center;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
}

@keyframes focusin {
  from {
    filter: blur(14px);
    opacity: 0;
  }
  to {
    filter: blur(0px);
    opacity: 1;
  }
}

.tagline {
  font-size: clamp(1.4rem, 5vw, 2.4rem);
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: #1a1a1a;
  animation: focusin 2s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s both;
}

.email {
  font-size: clamp(0.65rem, 2.5vw, 0.75rem);
  font-weight: 400;
  letter-spacing: 0.05em;
  color: #9a9490;
  text-decoration: none;
  animation: focusin 2s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.6s both;
}

.email:hover {
  color: #1a1a1a;
  transition: color 0.3s ease;
}
