
body {
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  font-family: 'Segoe UI', sans-serif;
  background: url("assets/fondo.jpg") center/cover no-repeat fixed;
  color: #3a2c10;
  animation: fadeIn 2s ease-in-out;
  text-align: center;
}

.container {
  max-width: 800px;
  margin: 10vh auto;
  padding: 40px 20px;
  background-color: rgba(255, 255, 0, 0.85);
  border-radius: 16px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.titulo {
  font-size: 2.5em;
  animation: dance 4s infinite alternate;
}

.descripcion {
  font-size: 1.2em;
  margin-top: 20px;
  line-height: 1.6;
}

.showaround {
  display: inline-block;
  margin-top: 30px;
  background-color: #0097e6;
  color: white;
  padding: 12px 20px;
  border-radius: 30px;
  font-weight: bold;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: background 0.3s ease;
}

.showaround:hover {
  background-color: #007bbf;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes dance {
  0%   { transform: rotate(-1deg); }
  50%  { transform: rotate(2deg); }
  100% { transform: rotate(-1deg); }
}
