* {
	overflow: auto;
	margin: 0;
	padding: 0;
}
html, body, .wrapper {
	height: 100%;
}
a {
	color: orange;
}
h1 {
	text-align: center;
}
.wrapper {
	background: black;
	color: white;
	height: 100%;
	width: 100%;
}
.nav-bar {
	background: #222;
	color: white;
	height: 10%;
	border-radius: 8px;
	
}
.nav-links {
	display: inline-block;
	margin: 40px;
}
.login-box {
	display: inline-block;
	float: right;
	text-align: center;
	margin: 40px;
}
.main-container {
	display: flex;
	flex: 0 0 100%;
	flex-flow: row wrap;
	width: 100%;
	margin: auto;
}

.main-item {
	width: 100px;
	height: 100px;
	margin: auto;
	margin-top: 25px;
	border: 1px solid #222;
	border-radius: 8px;
	text-align: center;
}

.bottom {
	position: absolute;
	bottom: 0;
	width: 100%;
	height: 5%;
	background: #222;
	border-radius: 8px;
	text-align: center;
}

