.background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../img/fondo_loading.png');
  background-size: cover;
  z-index: -1;
    animation: color-change 5s linear infinite;
}
@keyframes color-change {
  0% { filter: hue-rotate(0deg); }
  100% { filter: hue-rotate(360deg); }
}

.loader {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 1;
}

.loader h1 {
  font-family: Arial;
    font-size: 35px;
    color: white;
}
.loader p {
    margin: 0px 0px 5px 0px;
  font-family: Arial;
    font-size: 14px;
    color: white;
}

.logo {
  width: 200px; /* Ajusta el tamaño según tu imagen */
  height: auto;
}

.loader-inner {
  width: 70px; /* Ajusta el tamaño según tu preferencia */
  height: 70px;
  border: 10px solid #ccc;
  border-top-color: rgba(0,164,255,1.0);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}