@font-face {
  font-family: "Hammersmith One";
  src: url("/fonts/HammersmithOne-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

body {
  margin: 0;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(135deg, #ff9a8b, #ff6a88, #ff99ac, #ffc1d3);
  background-size: 400% 400%;
  animation: gradientAnimation 10s ease infinite;
  font-family: "Hammersmith One", serif;
  color: white;
  text-align: center;
  flex-direction: column;
}

@keyframes gradientAnimation {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

h1 {
  font-size: 3rem;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

/* Responsive styles */
@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }
}

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

img {
  max-width: 100%;
  height: auto;
  width: 50%;
  max-width: 300px;
  aspect-ratio: auto 734 / 701;
}

p {
  max-width: 600px;
  font-size: 1.25rem;
  line-height: 1.5;
  margin: 1rem;
}

@media (max-width: 768px) {
  p {
    font-size: 1.1rem;
  }
}

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