html {
  height: 100%;
  width: 100%;
  background: linear-gradient(135deg, #f3f4f6, #e5e7eb);
  padding: env(safe-area-inset-top) env(safe-area-inset-right) env(safe-area-inset-bottom) env(safe-area-inset-left);
}

body {
  margin: 0;
  height: 100%;
  width: 100%;
  font-family: 'Playfair Display', serif;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.content {
  padding: 1rem;
}

h1 {
  font-size: 3rem;
  margin: 0.5rem 0;
  color: #1f2937;
}

p {
  font-size: 1.25rem;
  margin: 0.25rem 0;
  color: #4b5563;
}

@media (max-width: 600px) {
  h1 {
    font-size: 2rem;
  }
  p {
    font-size: 1rem;
  }
}

a {
  color: #2a6ebb;
  text-decoration: none;
}
a:hover {
text-decoration: underline;
}
