@charset "utf-8";
/* CSS Document */

.grd {
	width: 100wh;
	height: 90vh;
	color: #fff;
	background: linear-gradient(-45deg, #EE7752, #E73C7E, #23A6D5, #23D5AB);
	background-size: 400% 400%;
	animation: Gradient 15s ease infinite;
}
 
@keyframes Gradient {
	0% {
		background-position: 0% 50%
	}
	50% {
		background-position: 100% 50%
	}
	100% {
		background-position: 0% 50%
	}
}

#bgptn1 {
	width: 100%;
	height: 2px;
}
#bgptn2 {
	width: 100%;
	height: 2px;
	margin-top:10px;
}