@import url('https://fonts.googleapis.com/css2?family=Fraunces:wght@400;600&display=swap');

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

body {
  min-height: 100vh;
  background-image: url('triangle-background-ame.svg');
  background-repeat: repeat;
  background-size: 480px 480px;
}

.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #e8edf5; /* Cold Starlight */
}

.hero h1 {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  letter-spacing: 0.02em;
  color: #c6c3ba; /* Platinum Champagne */
  margin-bottom: 0.5rem;
}

.hero h2 {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: clamp(1.5rem, 6vw, 2.5rem);
  letter-spacing: 0.02em;
  color: #c6c3ba; /* Platinum Champagne */
  margin: 0.5rem 0.5rem;
}

.hero p {
  font-family: sans-serif;
  font-size: 1.1rem;
  color: #9daab8; /* Titanium */
}

#footer {
  font-family: 'Fraunces', serif;
  font-weight: 200;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  letter-spacing: 0.02em;
  color: #c6c3ba; /* Platinum Champagne */
  margin: 5rem 0.5rem;
  padding-top: 5rem;
}
