body {
	text-align: center;
	background-color: dimgray;
}

#main-header{
	font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
}

#container {
	display: inline-flex;
	flex-direction: column;
	flex-basis: 148px;
	justify-content: center;
	align-self: center;
	background-color:#222222;
	border-radius: 48px;
	border-width: 4px;
	border-color: #cccccc;
	border-style: inset;
	margin: 2em;
}

.shortcut {
	display: inline-block;
	margin: 48px 96px;
	text-align: center;
	text-decoration: none;
}

.icon {
	height: 200px;
	width: 200px;
}

.icon-text {
	font-size: 4em;
	margin: 0px;
	margin-top: 16px;
	font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
	color: #cccccc;
}

@media screen and (min-width: 981px) {
	#container {
		border-radius: 24px;
		border-width: 2px;
	}

	.shortcut {
		margin: 24px 48px;
	}

	.icon {
		height: 100px;
		width: 100px;
	}

	.icon-text {
		font-size: 2em;
		margin: 0px;
		margin-top: 8px;
	}
}

@media screen and (min-width: 80rem) {
	#container {
		flex-wrap: wrap;
		flex-direction: row;
		margin-top: 38vh;
	}
}