body {
  margin: 0;
  background: linear-gradient(135deg, #fff 0%, #eee 100%); /* Cambiamos el degradado a blanco con un toque de gris */
}

#background {
  display: block;
  position: fixed;
  width: 100%;
  height: 100%;
}


#logocontainer{
  display:block;
  position:fixed;
  top:50%;
  left:50%;
  width:34vh;
  height:34vh;
  margin-left:-17vh;
  margin-top:-17vh;
  overflow:hidden;
  transition:background-color 500ms;
  cursor:pointer;
}

#logoText {
  display: block;
  position: absolute;
  left: 2vh;
  top: 2vh;
  width: 30vh;
  height: 30vh;
  background: linear-gradient(135deg, #000 0%, #fff 100%); /* Cambiamos el degradado a negro a blanco */
  background-size: contain;
  font-family: Trebuchet MS, sans-serif;
  font-size: 12vh;
  font-weight: bold;
  color: #3ebffa;
  text-align: center;
  line-height: 30vh;
  border: 0px solid #000;
  background-image: url("../img/190.jpg"); /* Cambia "ruta_de_la_imagen.jpg" con la URL de tu imagen */
  background-size: cover; /* Ajusta el tamaño de la imagen para cubrir todo el fondo */
}


.loader {
  display: block;
  position: absolute;
  background-color: #333; /* Cambiamos el color de fondo a un gris oscuro */
  /* Aumentamos el tamaño de las líneas */
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 8px solid #333; /* Puedes cambiar el color aquí si prefieres un tono distinto */
  border-right: 8px solid #333; /* Puedes cambiar el color aquí si prefieres un tono distinto */
  animation: colorChange 2s linear infinite; /* Agregamos la animación */
}


/*Pretty complex animation, so each side needs its own @keyframes.*/

@keyframes slide1{
  50%{width:32vh; margin-left:0;}
  100%{margin-left:32vh;}
}

@keyframes slide2{
  50%{height:32vh; margin-top:0;}
  100%{margin-top:32vh;}
}

@keyframes slide3{
  50%{width:32vh; margin-right:0;}
  100%{margin-right:32vh;}
}

@keyframes slide4{
  50%{height:32vh; margin-bottom:0}
  100%{margin-bottom:32vh;}
}