/*Need The Loading Animation.*/
*
{
	margin: 0;
	padding: 0;

}


.animatedgradient{
display:flex;
justify-content: center;
align-items: center;
flex-direction: column;
min-height: 25vh;
width: 100%;


background-image: linear-gradient(45deg,  #EE7752, #E73C7E, #23A6D5, #840015);
background-size: 400% 400%;
animation: move-bg 17s linear infinite;


}

@keyframes move-bg {
0% {
background-position: 0% 50%;
}
50% {
background-position: 100% 50%;
}
100% {
background-position: 0% 50%;
}
}
h1 {
font-size: 3rem;
font-family: "Lato", Arial, Sans-Serif;
color: black;
}

.push
{
	height: 75vh;
	width: 100%;
}
/*Need The Loading Animation.*/
