html { box-sizing: border-box; }
*, *:before, *:after { box-sizing: inherit; }

/* WebKit/Blink Browsers */
::selection {
	background: #0f9982;
	color: #fff;
}

/* Gecko Browsers */
::-moz-selection {
	background: #0f9982;
	color: #fff;
}

html {
	height: 100%;
}

body {
	padding: 5%;
	height: 100%;
	background-color: #242b33;
	color: #776c68;
	font-weight: 300;
	font-size: 22px;
	line-height: normal;
	font-family: "Roboto Slab", sans-serif;
	display: flex;
	align-items: center;
	justify-content: center;
}

#card {
	width: 100%;
	height: 100%;
	max-width: 1600px;
	max-height: 800px;
	background-color: #fff;
	box-shadow: 0 0 50px rgba(0,0,0, 0.5);
	border-radius: 6px;
	backface-visibility: hidden;
	transform: scale(0.9);
	opacity: 0;
	transition: 400ms;
	transition-delay: 200ms;
}

#card.active {
	transform: scale(1);
	opacity: 1;
}

main,
aside {
	width: 50%;
	height: 100%;
	display: flex;
	flex-direction: column;
	float: left;
}

main {
	padding-left: 20%;
	position: relative;
	justify-content: center;
}

aside {
	align-items: center;
	justify-content: flex-end;
}

aside img {
	max-height: 95%;
}

#logo {
	margin-left: -160px;
	width: 120px;
	height: auto;
	position: absolute;
	fill: #ef804f;
}

h1 {
	color: #5a524e;
	font-weight: 800;
	font-size: 60px;
	line-height: 1;
	font-family: Arial, sans-serif;
	letter-spacing: -0.05em;
	text-transform: uppercase;
}

p {
	margin: 1em 0 2em;
}

p:after {
	content: "";
	margin-top: 1em;
	width: 30px;
	height: 3px;
	background-color: #5a524e;
	display: block;
}

a {
	margin-bottom: 0.75em;
	display: inline-block;
	color: #ef804f;
	text-decoration: none;
}

a:after {
	content: "";
	width: 0;
	height: 1px;
	background-color: currentColor;
	display: block;
	transition: 200ms;
}

a:hover:after {
	width: 100%;
}

a:last-child {
	margin-bottom: 0;
}
