html,
body {
	height: 100%;
	width: 100%;
	margin: 0;
}

body {
	z-index: 1;
	background-position: center;
	background-attachment: fixed;
	background-size: cover;
	background-color: #393a38;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
}

canvas {
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
}

svg {
	fill: #fff;
	-moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;
	display: inline-block;
	font-style: normal;
	font-variant: normal;
	text-rendering: auto;
	line-height: 1;
	text-align: center;
	width: 1.25em;
	height: 1em;
}

#wrapper {
	height: 100%;
	display: grid;
}

#itemlist {
	display: inline-grid;
	grid-template-columns: repeat(2, 1fr);
	margin: auto;
	max-width: -webkit-min-content;
	max-width: min-content;
	border-radius: 6px;
	background-color: rgba(0, 0, 0, .4);
	font-size: 4em;
}

#itemlist>* {
	padding: 15px 15px 0px;
	margin: 0 auto;
}

#itemlist > pre {
	padding-bottom: 15px;
}

#itemlist a {
	color: #fff;
}

#itemlist a:hover {
	color: #c4c4c4;
}

#itemlist a:hover svg {
	fill: #c4c4c4;
}

#avatar {
	opacity: 0.8;
	cursor: pointer;
	position: absolute;
}

#avatar>img {
	width: 65px;
	height: 65px;
}

pre {
	color: #fff;
	opacity: 0;
	font-size: 13px;
	cursor: pointer;
}

@media only screen and (min-width: 600px) {
	#itemlist {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media only screen and (min-width: 800px) {
	#itemlist {
		grid-template-columns: repeat(6, 1fr);
	}
}