/*
  color scheme http://colorschemedesigner.com/#0a41Ow0w0vyw0
*/

body {
	margin: 0px;
	font-family: Arial, Helvetica, sans-serif;
	font-style: normal;
	font-weight: 400;
	-webkit-user-select: none;
}

.bg-default {
	background: #00B64F;
}

.bg-default:hover {
	color: #62DA97;
	background: #22894F;
}

.bg-default + .description {
	border-left: 1px solid #00B64F;
}

.main-flex {
	margin: auto;
	width: 90%;
	margin-top: 50px;
	display: -webkit-box; /* IOS */
	display: flex;        /* Others */
	justify-content: space-around;
	align-items: flex-start;
	flex-wrap: wrap;
}

.item {
	color: white;
	padding: 24px 15px;
	width: 160px;
	font-size: 130%;
	text-align: center;
	cursor: default;
	-webkit-user-select: none;
	letter-spacing: 2px;
	transition: background 0.3s ease-out, color 0.3s ease-out;
}

.item:active {
	background: none;
}

.description {
	font-size: 90%;
	padding: 0px 10px;
	margin: auto;
	margin-top: 10px;
	box-sizing: border-box
}

.item-wrapper {
	width: 190px;
	margin: 28px 20px;
}