@import url(https://fonts.googleapis.com/css?family=Roboto+Condensed:700);

* {
	margin: 0;
	padding: 0;
}

html,
body {
	height: 100%;
}

a {
	position: relative;
	display: flex;
	justify-content: center;
	flex-direction: column;
	text-align: center;
	float: left;
	width: 50%;
	height: 100%;
	background: #434a54;
	font: 700 24px "Roboto Condensed", Arial, sans-serif;
	color: rgba(255, 255, 255, 0.9);
	text-decoration: none;
	text-transform: uppercase;
	z-index: 1;
	-webkit-transition: color 100ms ease-out;
	-moz-transition: color 100ms ease-out;
	-o-transition: color 100ms ease-out;
	transition: color 100ms ease-out;
	overflow: hidden;
}

a:not(:last-child):before {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	width: 1px;
	height: 100%;
	background: rgba(255, 255, 255, 0.3);
}

a:after {
	content: "";
	display: block;
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	opacity: 0.3;
	z-index: -1;
	-webkit-transition: transform 500ms ease-out, opacity 500ms ease-out;
	-moz-transition: transform 500ms ease-out, opacity 500ms ease-out;
	-o-transition: transform 500ms ease-out, opacity 500ms ease-out;
	transition: transform 500ms ease-out, opacity 500ms ease-out;
}

a#novanoid-1:after {
	background-image: url(../img/novanoid-1.png);
}

a#novanoid-2:after {
	background-image: url(../img/novanoid-2.png);
}

a:hover {
	color: rgba(255, 255, 255, 0);
}

a:hover:after {
	-webkit-transform: scale(1.2);
	-moz-transform: scale(1.2);
	-o-transform: scale(1.2);
	transform: scale(1.2);
	opacity: 1;
}

a img {
	display: block;
	width: 100%;
	height: auto;
}