body{
	width: 100%;
	height: 100%;
	display: flex;
	align-content: center;
	justify-content: center;

	background: linear-gradient(to right , #FDFBFB, #EBEDEE 70%);
	
}

.gradient {
	 background: linear-gradient(to bottom, #30CFD0 0%, #330867 100%);
	 color: white;
	 font-size: 100px;
	 animation: 3s linear 1s slidein;
}

@keyframes slidein {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}