{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: hsl(30, 14%, 95%);
  color: hsl(0, 0%, 13%);
  font-family: 'Source Sans 3', sans-serif;
  padding: 1.5rem;
}
.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 28rem;
  gap: 2.5rem;
}
h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.25rem;
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: -0.025em;
}
.subtitle {
  color: hsl(0, 0%, 40%);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.7;
  max-width: 24rem;
}
.contact {
  color: hsl(0, 0%, 40%);
  font-size: 0.875rem;
  font-weight: 300;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.contact a {
  color: hsl(22, 37%, 47%);
  text-decoration: none;
  transition: opacity 0.2s;
}
.contact a:hover {
  opacity: 0.8;
}
.logo {
  width: 12rem;
  animation: breathe 2s ease-in-out infinite;
}
@keyframes breathe {
  0%, 100% { opacity: 0.9; }
  50% { opacity: 1; }
}
@media (min-width: 768px) {
  h1 { font-size: 3rem; }
  .subtitle { font-size: 1.125rem; }
  .logo { width: 14rem; }
}