.grid > div {
  width: 56px;
}
#main-content {
  display: none; /* Initially hide the main content */
}
/* loader-6 */

@keyframes square-anim {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.5);
  }
  100% {
    transform: scale(1);
  }
}

.page-transition {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.9); /* Semi-transparente */
  z-index: 9999;
  transition: opacity 0.8s ease-out;
  opacity: 0;
}

@keyframes square-animation {
  0% {
    left: 0;
    top: 0;
  }

  10.5% {
    left: 0;
    top: 0;
  }

  12.5% {
    left: 32px;
    top: 0;
  }

  23% {
    left: 32px;
    top: 0;
  }

  25% {
    left: 64px;
    top: 0;
  }

  35.5% {
    left: 64px;
    top: 0;
  }

  37.5% {
    left: 64px;
    top: 32px;
  }

  48% {
    left: 64px;
    top: 32px;
  }

  50% {
    left: 32px;
    top: 32px;
  }

  60.5% {
    left: 32px;
    top: 32px;
  }

  62.5% {
    left: 32px;
    top: 64px;
  }

  73% {
    left: 32px;
    top: 64px;
  }

  75% {
    left: 0;
    top: 64px;
  }

  85.5% {
    left: 0;
    top: 64px;
  }

  87.5% {
    left: 0;
    top: 32px;
  }

  98% {
    left: 0;
    top: 32px;
  }

  100% {
    left: 0;
    top: 0;
  }
}

.loader-6 {
  position: absolute;
  width: 96px;
  height: 96px;
  scale: 0.275;
  transform: rotate(45deg);
}

.loader-square {
  position: absolute;
  top: 0;
  left: 0;
  width: 28px;
  height: 28px;
  margin: 2px;
  border-radius: 0px;
  background: #cecece;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  animation: square-animation 10s ease-in-out infinite both;
}

.loader-square:nth-of-type(0) {
  animation-delay: 0s;
}

.loader-square:nth-of-type(1) {
  animation-delay: -1.4285714286s;
}

.loader-square:nth-of-type(2) {
  animation-delay: -2.8571428571s;
}

.loader-square:nth-of-type(3) {
  animation-delay: -4.2857142857s;
}

.loader-square:nth-of-type(4) {
  animation-delay: -5.7142857143s;
}

.loader-square:nth-of-type(5) {
  animation-delay: -7.1428571429s;
}

.loader-square:nth-of-type(6) {
  animation-delay: -8.5714285714s;
}

.loader-square:nth-of-type(7) {
  animation-delay: -10s;
}
html,
body {
  height: 100%;
  margin: 0;
  display: flex; /* Hacemos que el contenedor principal sea un flexbox */
  justify-content: center; /* Centramos los elementos en el eje horizontal */
  align-items: center; /* Centramos los elementos en el eje vertical */
}

.loader-6 {
  position: relative;
  width: 96px;
  height: 96px;
  scale: 0.275; /* Ajusta el valor de escala según sea necesario */
  transform: rotate(45deg);
}

.loader-square {
  position: absolute;
  top: 0;
  left: 0;
  width: 28px;
  height: 28px;
  margin: 2px;
  border-radius: 0px;
  /* Aquí definimos una lista de colores */
  background: #04f153; /* Color inicial */
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  animation: square-animation 10s ease-in-out infinite both,
    color-animation 15s linear infinite; /* Animación para cambiar de color */
}

@keyframes color-animation {
  0% {
    background-color: #07da4d;
  } /* Verde */
  25% {
    background-color: #ff0000;
  } /* Rojo */
  50% {
    background-color: #2f2fc2;
  } /* Azul */
  75% {
    background-color: #ffff00;
  } /* Amarillo */
  100% {
    background-color: #07da4d;
  } /* Regresar al verde */
}

/* Media query para ajustar el tamaño en pantallas grandes */
@media (min-width: 768px) {
  /* Ajusta el breakpoint según sea necesario */
  .loader-6 {
    scale: 1; /* Ajusta el valor de escala para pantallas grandes */
  }
}

/* Resto de tu CSS para las animaciones y los cuadrados */

/* Media query para ajustar el tamaño en pantallas grandes */
@media (min-width: 768px) {
  .loader-6 {
    scale: 1.5; /* Ajusta el valor de escala para pantallas grandes */
  }
}

/* Media query para pantallas pequeñas (opcional) */
@media (max-width: 480px) {
  .loader-6 {
    scale: 0.2; /* Ajusta el valor de escala para pantallas pequeñas */
  }
}
