/* Reset bàsic */
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

/* Cos de la pàgina */
body {
  background-color: #cda4ff; 
  font-family: Arial, sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center; 
  justify-content: center; 
  min-height: 100vh; 
  text-align: center; 
  padding: 20px;
}

/* Títol */
h1 {
  margin-bottom: 20px;
  color: #4b0082; /* lila fosc */
  text-shadow: 1px 1px 3px #aaa;
}

/* Imatge */
img {
  width: 300px;
  height: auto;
  border-radius: 10px;
  margin-bottom: 20px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

p {
  background-color: #f3e5f5; /* lilós suau */
  padding: 15px 20px;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  font-size: 1.1em;
}
