body {
	background: linear-gradient(-45deg, #3d1f14, #4a1329, #0d3a4b, #0d4b3d);
	background-size: 400% 400%;
	background-attachment: fixed;
	animation: gradientFlow 20s ease infinite;
	min-height: 100vh;
	width: 100%;
	color: #ffffff;
	user-select: none;
	overflow-x: hidden;
}

@keyframes gradientFlow {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}

a {
	color: #4da6ff;
	text-decoration: none;
	font-weight: 500;
	text-shadow: 0 0 4px rgba(93, 179, 255, 0.5);
}

a:hover {
	text-decoration: underline;
	color: #80c1ff;
}

#ServersContainer .ServerContainer {
	background-color: rgba(0.1, 0.1, 0.1, 0.3);
	margin-bottom: 10px;
	font-family: Arial, Helvetica, sans-serif;
	line-height: 1.5;
	letter-spacing: 0.03em;
}
