/* CSS */

body {
	margin: 0;
	padding: 18% 0 0 0;
	background-color: #fff;
	user-select: none;
}

section {
	margin: auto;
	width: 705px;
}

	section nav{
		width: 750px;
		margin: auto;
	}

	section a {
		display: inline-block;
	}

	section a:nth-of-type(1n+2) {
		margin-left: 50px;
	}

	section img {
		vertical-align: middle;
		width: 200px;
		transition: 0.2s;
		cursor: pointer;
		filter: invert(1);
		opacity: 0.2;
	}

	section img:hover {
		transform: scale(1.2, 1.2);
		opacity: 1;
	}

	#discord {
		width: 230px;
		filter: invert(0);
	}