.all-content {
	width: 100wh;
	height: 100vh;
	color: #fff;
	background: linear-gradient(-45deg, #9540ec, #9540ec, #23A6D5, #23D5AB);
	background-size: 400% 400%;
	-webkit-animation: Gradient 15s ease infinite;
	-moz-animation: Gradient 15s ease infinite;
	animation: Gradient 15s ease infinite;
}
body {
	font-family: "Roboto Mono";
    margin: 0px;
}
.main-content{
	padding:0 80px;
}
.top-content {
    position: absolute;
    top: 60px;
}
.bottom-content {
    position: absolute;
    bottom: 55px;
    right: 60px;
    text-align: right;
}
.top-content p {
	font-size:14px;
	margin: 0px;
	color: #fff;
	margin-bottom: 10px;
}
a {
    color: #fff;
	text-decoration: none;
}
.top-content h6 {
    font-family: 'Muli';
	font-weight: bold;
	font-size:20px;
	margin: 0px;
	color: #fff;
	margin-top: 25px;
	margin-bottom: 20px;
}
.bottom-content p {
    margin-bottom: 20px;
    margin-top: 0px;
}
.bottom-content p:last-child {
    margin-bottom: 0px;
}
@-webkit-keyframes Gradient {
	0% {
		background-position: 0% 50%
	}
	50% {
		background-position: 100% 50%
	}
	100% {
		background-position: 0% 50%
	}
}

@-moz-keyframes Gradient {
	0% {
		background-position: 0% 50%
	}
	50% {
		background-position: 100% 50%
	}
	100% {
		background-position: 0% 50%
	}
}

@keyframes Gradient {
	0% {
		background-position: 0% 50%
	}
	50% {
		background-position: 100% 50%
	}
	100% {
		background-position: 0% 50%
	}
}

@media screen and (max-width:767px){
	.top-content {
		position: absolute;
		top: 100px;
		left: 0px;
		text-align: center;
		right: 0px;
	}
	.bottom-content {
		position: absolute;
		bottom: 55px;
		right: 0px;
		left: 0px;
		text-align: center;
	}
}