html, body {
	width: 100%;
	margin: 0;
}
body {
	z-index: 1;
	background-position: center;
	background-attachment: fixed;
	text-align: center;
}

.github-corner {
	opacity: 0.4;
}
.github-corner:hover {
	opacity: 1;
}

#footer {
  position: absolute;
  bottom: 1%;
	left: 10%;
  font-size: 0.8em;
	width: 80%;
	font-family: sans-serif;
}

#search{
	padding-bottom: 25px;
	margin-left: 0px;
	border-radius: 6px;
	font-size: 4em;
}
.input_box{
	border: none;
	outline: none;
	background-color: rgba(0, 0, 0, .4);
	padding: 15px;
	color: whitesmoke;
	font-size: 20px;
	transition: 0.4px all;
	border-radius: 5px 5px 5px 5px;
	width: 50%;
	margin-bottom: 30px;
	/*box-shadow: 3px 4px #0F1011;*/

}

#wrapper {
	height: 100%;
	display: grid;
}
#itemlist {
	display: inline-grid;
	grid-template-columns: repeat(2, 1fr);
	margin: auto;
}
@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);
	}
}

#itemlist {
	border-radius: 6px;
	background-color: rgba(0, 0, 0, .4);
	font-size: 4em;
}
#itemlist>*, #search {
	padding: 15px;
	margin: 0 auto;
}

/* link colors */
#itemlist a, #footer a {
	color: #fff;
}
#itemlist a:hover, #footer a:hover {
	color: #c4c4c4;
}
