body {
    font-family: Raleway, sans-serif;
    max-width: 800px;
    margin: 0 auto;
    padding: 0px;
    background-color: #555;
}

.loading {
    color: #007bff;
    text-align: center;
    margin: 20px 0;
}

.error {
    color: red;
    margin-top: 20px;
    padding: 10px;
    border: 1px solid red;
    border-radius: 4px;
}

.success {
    color: #4cff03;
    margin-top: 3px;
    font-weight: bold;
}

main, .leyenda-section {
    margin: 5px 5px 5px 5px;
    padding: 10px;
    border-radius: 4px;
    border: 1px solid #ddd;
    color: #eee;
    background: rgba(0, 0, 0, 0.35); /* Blanco con transparencia */
    backdrop-filter: blur(10px);          /* Desenfoque de fondo */
}

main h1 {
    color: #2c7a9e;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

main h2 {
    color: #498ba1;
    margin-left: 5px;
}

main h3 {
    margin-left: 10px;
}

main strong {
    color: #ec6039;
}

main em {
    color: #ce843c;
}

.leyenda-section {
    text-align: center;
}

footer  {
    color: #eee;
    text-align: center;
    overflow: hidden;
}

.footer-marquee {
    display: inline-block;
    white-space: nowrap;
    animation: scroll 4s linear infinite alternate;
}

@keyframes scroll {
    0% { transform: translateX(-5%); }
    100% { transform: translateX(5%); }
}

body .shiny-text {
  position: relative;
  display: inline-block;
  color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(130deg,rgba(0, 0, 128, 1) 0%, rgba(0, 0, 255, 1) 14%, rgba(0, 0, 128, 1) 28%, rgba(0, 0, 128, 1) 62%, rgba(0, 0, 255, 1) 89%, rgba(0, 0, 128, 1) 100%);
  background-size: 250% 100%;
  background-position: 0% 0;
  animation: haz-luz 9s linear infinite;
  text-align: center;
  vertical-align: text-bottom;
  overflow: hidden;
}
@keyframes haz-luz {
  0% {
    background-position: 100% 0;
  }
  100% {
    background-position: -250% 0;
  }
}


/*CSS PARA LAS LISTAS*/
main h3 + ul,
main h3 + ol {
  margin-left: 15px;
}

main h2 + ul,
main h2 + ol {
  margin-left: 10px;
}

.leyenda-section ul, .leyenda-section ol {
  margin: 0;
  padding: 0;
}

.leyenda-section ul li::marker,
.leyenda-section ol li::marker {
  content: none;
}