body {body {
  background-image: urlattachment: fixed;
}
  margin: 0;
  padding: 0;
  font-family: 'Comic Sans MS', sans-serif;
  background: linear-gradient(to bottom, #fff5f8, #dff3ff);
  text-align: center;
  color: #444;
}

.container {
  padding: 20px;
}

.mascota {
  width: 150px;
  margin-top: 20px;
  animation: bounce 2s infinite;
}

h1 {
  font-size: 28px;
  color: #ff6ba3;
  margin-top: 10px;
}

.frase {
  font-size: 16px;
  margin: 10px 0 30px;
  color: #555;
}

.botones {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
}

.boton {
  background-color: #ffde59;
  color: #333;
  padding: 12px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: transform 0.2s;
}

.boton:hover {
  transform: scale(1.05);
  background-color: #ffd42a;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
} 
}body {
  background-image: url("fondo.png")
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}