body {
	width: 100wh;
	height: 90vh;
	color: #fff;
	background: linear-gradient(45deg, #2446a1, #192c5b, #3C0D45, #631572);
	background-size: 400% 400%;
	-webkit-animation: Gradient 60s ease infinite;
	-moz-animation: Gradient 60s ease infinite;
	animation: Gradient 60s ease infinite;
}
@keyframes Gradient {
	0% {
		background-position: 0% 50%
	}
	50% {
		background-position: 100% 50%
	}
	100% {
		background-position: 0% 50%
	}
}

h2 {
	color: white !important;
}

h1, h6 {
	font-family: 'Open Sans';
	font-weight: 300;
	text-align: center;
	position: absolute;
	top: 45%;
	right: 0;
	left: 0;
}



.backdrop {
	-moz-box-shadow: 0px 6px 5px #111; 
	-webkit-box-shadow: 0px 6px 5px #111; 
	box-shadow: 0px 2px 10px #111; 
	-moz-border-radius:190px; 
	-webkit-border-radius:190px; 
	border-radius:190px;
}

.linktree {
	width: 120px;
	height: 120px;
}

.linkElement {
	padding-bottom: 30px;
}


.linkElement button img {
	transition: all 0.15s linear;
	filter: invert(100%);
}
.linkElement button img.no-color-swap {
	filter: invert(0%);
}
.linkElement button:hover img {
	filter: invert(0%);
}