
@import url('https://fonts.googleapis.com/css2?family=Great+Vibes&display=swap');

body {
  font-family: 'Georgia', serif;
  background: linear-gradient(270deg, #a1c4fd, #c2e9fb, #b7f8db, #dff9fb);
  background-size: 800% 800%;
  animation: aurora 30s ease infinite;
  color: #222;
  margin: 0;
  padding: 0;
  text-align: center;
}

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

header {
  padding-bottom: 2rem;
}
.banner-img {
  width: 100%;
  max-height: 240px;
  object-fit: cover;
}
h1 {
  margin: 0.5rem 0 0 0;
  font-size: 3rem;
  color: #2a5dba;
  font-family: 'Great Vibes', cursive;
}
.sottotitolo {
  font-style: italic;
  color: #555;
  margin-bottom: 1rem;
}
textarea {
  width: 90%;
  height: 100px;
  margin: 1rem 0;
  font-size: 1rem;
  padding: 0.5rem;
}
select {
  padding: 0.5rem;
  font-size: 1rem;
  margin-bottom: 1rem;
}
.button-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1rem;
}
button, input[type=submit] {
  background: #d44;
  color: white;
  padding: 0.6rem 1.2rem;
  font-size: 1rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}
.button-link {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.5rem 1rem;
  background: #333;
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
}
.preview {
  max-width: 180px;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.anteprime-poetiche {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin: 2rem;
}
.anteprime-poetiche img {
  max-width: 140px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
footer {
  font-size: 0.85rem;
  color: #777;
  padding: 2rem 1rem 1rem;
}
