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


body {
  font-family: 'Noto Sans Display', sans-serif;
  background: linear-gradient(135deg, #ffe29f, #ffa99f, #ff719a, #cc2b5e);
    background-size: 400% 400%;
    animation: gradientShift 10s ease infinite;
    color: #fff;
    margin: 0;
    padding: 0;
}

.main-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 2rem;
  background: rgba(255, 60, 112, 0.403);
    border-radius: 20px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
}

header {
  text-align: center;
  margin-bottom: 2rem;
}

header h1 {
  font-family: 'Bodoni Moda', serif;
  font-size: 3rem;
  margin-bottom: 0.5rem;
}

.subtitle {
  font-size: 1.2rem;
  color: #777;
}

.intro {
  text-align: center;
  margin-bottom: 2rem;
}

.content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.btn {
  padding: 1rem 2rem;
  background-color: #ff000096;
  color: white;
  text-decoration: none;
  border-radius: 8px;
  text-align: center;
  transition: background-color 0.3s ease;
}

.btn:hover {
  background-color: #ff0000;
}

.image img {
  max-width: 100%;
  height: auto;
}






