/* styles.css */
body {
    margin: 0;
    font-family: Great Vibes;
    background: linear-gradient(to bottom, #fdfcfb, #e2d1c3); /* gradient de nude a talp clar */
    overflow-x: hidden; /* oculta les barres de desplaçament horitzontals */
}

header {
    text-align: center;
    padding: 60px 20px;
}

h1 {
    font-family: 'Great Vibes', cursive;
    font-size: 60px;
    color: #3a2e2e; /* grana marronós */
}

p {
    color: #6e5f5f; /* marró vermellós */
    font-size: 18px;
}

.projecte {
  text-align: center;
  padding: 40px;
}

.images {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.images img {
  width: 300px;
  border-radius: 20px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* Partícules màgiques */
.magic-bg span {
  position: absolute;
  width: 6px;
  height: 6px;
  background: gold;
  border-radius: 50%;
  animation: float 10s linear infinite;
  opacity: 0.7;
}

@keyframes float {
  0% {
    transform: translateY(100vh);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: translateY(-10vh);
    opacity: 0;
  }
}