body {
	margin: 3em;
	background-color: #36393f;
	color: white;
	font-family: 'Roboto', sans-serif;
}

.title {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 1em;
}

body > div.content {
	font-family: Consolas, Monaco, "Andale Mono", "Ubuntu Mono", monospace;
}


.supportServer {
	width: max-content;
	margin: 5em auto;
}

button {
	cursor: pointer;
	min-height: 32px;
	color: white;
	border-radius: 8px;
	border: none;
	font-family: 'Roboto', sans-serif;
	font-weight: 500;
	font-size: 14px;
	line-height: 16px;
	transition: background-color .3s ease,color .3s ease
}

button.primary {
	background-color: #5865f2;
}

button.primary:hover {
	background-color: #4752c4;
}

button.success {
	background-color: #3ba55c;
}

button.success:hover {
	background-color: #359553;
}

button.secondary {
	background-color: #4f545c;
}

button.secondary:hover {
	background-color: #474c53;
}

button > div.content {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 6px 16px;
	white-space: nowrap;
}

button > div.content > img {
	max-height: 24px;
}

a {
	text-decoration: none;
	color: #00aff4;
}

h2 {
	margin-bottom: 0;
}

p {
	margin-top: 0.5em;
}