body {
	display: flex;
	align-items: center;
	justify-content: center;
}

#menu {
	display: block;
	display: flex;
	flex-direction: column;
	align-items: center;
	font-size: 26px;
}

#menu > a {
	text-align: center;
	font-weight: 100;
	margin: 1em 0;
	padding: 1em 1.5em;
	box-sizing: border-box;
	transition: background .2s;
}
#menu > a > img {
	display: block;
	width: 300px;
	height: auto;
}

#menu > a.text:hover {
	cursor: pointer;
	background: #37474f;
}

#menu > .text {
	display: flex;
	align-items: center;
	justify-content: center;
	background: #263238;
	box-shadow: 0 2px 5px 0 rgba(55, 71, 79, 0.5), 0 2px 10px 0 rgba(55, 71, 79, 0.3);
}
#menu > .text > svg {
	display: block;
	width: 2em;
	height: 2em;
	fill: #fff;
	margin-right: 1.5em;
}
#menu > .small {
	font-size: 0.6em;
}

#menu > .logo > img {
	display: block;
	width: 250px;
	fill: #fff;
	margin: .5em auto 0;
}

#login {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	width: 60%;
	margin-left: 20%;
	z-index: 20;
	background: #fff;
	box-shadow: 0 2px 5px 0 rgba(55, 71, 79, 0.5), 0 2px 10px 0 rgba(55, 71, 79, 0.3);
	display: none;
}
	
input {
    border: 1px solid #DADADA;
    color: #888;
    height: 6vw;
    outline: 0 none;
    padding: 3px 3px 3px 5px;
    width: 90%;
    box-shadow: inset 0px 1px 4px #ECECEC;
	display: block;
	font-size: 4vw;
	font-weight: 100;
	text-align: center;
	background: #fff;
}

input[type="submit"] {
    background: #f0f0f0;
}

@media only screen and (min-width: 800px) {

	#menu {
		font-size: 32px;
	}

}