@keyframes fadeInOutAnimacion_fondo {
    0% {
      opacity: 0.5;
    }

    100% {
      opacity: 1;
    }
  }

  @keyframes crecer {
    0% {
      transform: scale(1);
    }

    100% {
      transform: scale(1.2);
    }
  }

  .animacion-fondo {
    top: 0;
    left: 0;
    z-index: 0;
    width: 100vw;
    height: 100vh;
    position: fixed;
    animation-duration: 6s, 3s;
    animation-iteration-count: infinite;
    animation-direction: alternate-reverse;
    animation-timing-function: ease-in-out;
    animation-name: fadeInOutAnimacion_fondo, crecer;
  }
  
  .fondo {
    top: 0;
    left: 0;
    z-index: 0;
    width: 100vw;
    height: 100vh;
    position: fixed;
	background: rgb(88,165,239);
    background: radial-gradient(circle, rgba(88,165,239,1) 4%, rgba(4,45,124,1) 100%);
  }
  

#CuadroTexto{
	height:100%;
	overflow-x:hidden;
	font-family:MouseMemoirs-Regular;
	font-size:4vw;
}

#CuadroTexto1{
	height:100%;
	overflow-x:hidden;
	font-family:MouseMemoirs-Regular;
	font-size:3vh !important;
}

::-webkit-scrollbar {
    display: none;
	
}


