@keyframes aparecer {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes mover {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(10px);
  }
}
body {
  font-family: "Poppins", sans-serif;
  background-color: #ffffff;
  color: #2c1b0c;
  margin: 0;
}
body h1 {
  color: #ea6d2d;
  animation: mover 1s ease-in-out infinite alternate;
  text-align: center;
}
body h2 {
  text-align: center;
  color: #ea6d2d;
  font-weight: bold;
  margin-bottom: 20px;
}
body p {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 30px;
}
body nav {
  background-color: #ea6d2d;
}
body nav ul {
  list-style: none;
  display: flex;
  gap: 1rem;
}
body nav ul li a {
  color: white;
  font-weight: bold;
}

.caja {
  background-color: #ffd8e2;
  border-radius: 10px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  color: #2c1b0c;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  animation: aparecer 0.8s ease-out forwards;
  opacity: 0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.caja:hover {
  transform: translateY(-5px);
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.15);
}
.caja h3 {
  color: #ea6d2d;
  margin-bottom: 10px;
  font-size: 1.2rem;
}
.caja p {
  font-size: 15px;
  text-align: center;
}

@media (max-width: 768px) {
  h2 {
    font-size: 22px;
  }
  .caja {
    margin-bottom: 20px;
  }
}

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