@charset "UTF-8";
/* Body */
*{
		font-family: "Gill Sans", "Gill Sans MT", "Myriad Pro", "DejaVu Sans Condensed", Helvetica, Arial, "sans-serif";
}
body{
	align-items: center;
}
a{
	text-decoration: none;
}
h1{
	font-size: 60px;
	text-align: center;
	color: #B3B3B3;
}
.menu{
	display: flex;
	flex-flow: row wrap;
	justify-content: space-around;
	
}
.submenu{
	display: flex;
	flex-flow: row wrap;
	justify-content: center;
	margin: 20px 0;
}
.submenu a{
	padding: 0 50px;
}
.button {
	flex: 1;
	
	width: 300px;
	height: 50px;
	background: #7B7B7B;
	margin: 0px auto auto;
	padding: 20px 10px;
	text-align: center;
	vertical-align: middle;
	border-radius: 0px;
	text-transform: uppercase;
	font-size: 24px;
	font-weight: bold;
	letter-spacing: 2px;
	border: 3px solid #FFFFFF;
	color: #FFFFFF;
	transition: all 0.4s linear;
}
.green:hover {
	background-color: #6CDF79;
	color: #FFFFFF;
	cursor: pointer;
}
.purple:hover {
	background-color: #CA7EF7;
	color: #FFFFFF;
	cursor: pointer;
}	
.column {
	width: 100%;
	margin-top: 0px;
}
.hero_header {
	padding-left: 10px;
	padding-right: 10px;
	line-height: 22px;
	text-align: center;
}

.greyscale{
	filter: grayscale(90);
	width: 100px;

}

.shift, .shift:hover{
	transition: all 0.4s ease-in-out;
}

.greyscale:hover{
	filter: grayscale(0);	
}

.togrey:hover{
	filter:invert(0.75);
}


.non-button img{
	height: 100px;
	width: auto;
	text-align: center;
	vertical-align: middle;
	align-content: center;
	margin: 20px 0;
}