*, :after, :before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

html {
	overflow: hidden;
}

body {	
	font-family: Roboto Mono, Consolas, monospace;	
	color: rgb(165, 165, 165);
	padding: 0px;
	margin: 0px;
	overflow-x: hidden;
	max-height: 100vh;
	background-color: #202020;
}

#content {
	border-radius: 2px;
	margin: 10px auto 10px auto;
	width: 100%;
	height: auto;
	min-height: 100vh;
}

#items {
	width: 100%;
	padding: 0px;
	display: flex;
	align-items: start;
	justify-content: center;
	flex-wrap: wrap;
}

#items > .item {
	cursor: pointer;
	width: 10%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: start;
	margin: 5px 2.5px 5px 2.5px;
	padding: 10px 5px 10px 5px;
	text-decoration: none;
}
#items > .item > * {
	pointer-events: none;
}

#items > .item:hover {
	background-color: rgba(255, 255, 255, 0.2);
}

#items > .item > .image-cont {
	width: 80%;
	aspect-ratio: 1/1;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 5px;
}

#items > .item > .image-cont > .image {
	width: 100%;
	height: 100%;
	filter: drop-shadow(3px 3px 3px rgba(0, 0, 0, 0.8));
}

#items > .item > .label {
	color: rgb(202, 202, 202);
	width: 100%;
	height: 100%;
	line-height: 1.1em;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.8em;
	font-family: Arial, Helvetica, sans-serif;
}



