@charset "utf-8";
/* CSS Document TEXTO TIPEADO*/

html, body {
      font-family: "Montserrat";
      background: #CCCCFF; /* FONDO COLOR LILA */
	  width: 100%;
      height: 100%;
	  overflow: hidden; /* DESACTIVA EL SCROLL */
	  
    }

    .container-text {
	  display: flex;
	  justify-content: center;
      align-items: center;
	  width: 100%;
      height: 100%;
      padding:5px;
	  flex: 0 1 auto; /* Crece y se encoge según sea necesario */
	  
    }

    .text {
	  font-weight: 100;
      font-size: 6em;
	  text-align: center;
      color: #FFF;
	  line-height: .9em; /* AJUSTAR INTERLINEADO */
	  max-width: 90%; /* Limita el ancho del contenido */
    }
	
	
	@media (max-width: 768px) {
	  .text {
		font-size: 3rem; /* Tamaño de fuente por defecto para MOBILES */
		text-align: center;
	  }
	}
	
	@media (min-width: 992px) {
	  .text {
		font-size: 6rem; /* Tamaño de fuente por defecto para LAPTOPS */
		text-align: center;
	  }
	}
	
	@media (min-width: 2560px) {
	  .text {
		font-size: 18rem; /* Tamaño de fuente por defecto para pantallas EXTRA GRANDES */
		text-align: center;
	  }
	}


