@charset "UTF-8";
body {
  font-family: "Segoe UI", system-ui, sans-serif;
  height: 100vh;
  margin: 0;
  display: grid;
  place-items: center;
  color: white;
  background: linear-gradient(to bottom, #6a0dad, #ff7e5f);
  text-align: center;
}

h1 {
  font-size: 2.5rem;
  line-height: 1.2;
  padding: 1rem 2rem;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 15px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.4);
}

h1::after {
  content: "🌊";
  display: block;
  font-size: 3rem;
  margin-top: 0.5rem;
  animation: wave 1.5s ease-in-out infinite alternate;
}

@keyframes wave {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-10px);
  }
}
body::after {
  content: "© 2026 Sunnee Beachwear - Progetto TypeScript";
  display: block;
  position: fixed;
  bottom: 10px;
  width: 100%;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
}

/*# sourceMappingURL=style.css.map */
