@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@700;800&family=Lora:wght@400&display=swap');

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

html, body {
  height: 100%;
}

body {
  font-family: 'Lora', Georgia, serif;
  color: #333333;
  background: #fafafa;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}

.container {
  max-width: 600px;
}

h1 {
  font-family: 'Raleway', sans-serif;
  font-weight: 800;
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  color: #00897B;
  margin-bottom: 1rem;
}

.tagline {
  font-size: 1.15rem;
  color: #1B263B;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.divider {
  width: 80px;
  height: 3px;
  background: #00897B;
  border: none;
  border-radius: 2px;
  margin: 0 auto 2rem;
}

footer {
  font-size: 0.85rem;
  color: #666;
}

footer a {
  color: #00897B;
  text-decoration: none;
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
}

footer a:hover {
  text-decoration: underline;
}
