/* 
*  @reset
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}

@font-face {
    font-family: DistrictThin;
    src: url(http://www.suzannelanes.com/fonts/DistrictThin.otf);
}

html {
	background: #1e222b;
	height: 100%;
}

body {
	height: 100%;
	text-align: center;
}

.logo {
	position: absolute;
	top: 40%;
	left: 50%;
	right: 50%;
	bottom: 60%;
	margin: 0 0 0 -100px;
}

.logo img {
	width: 200px;
	height: 50px;
}

.email {
	position: absolute;
	top: 60%;
	left: 50%;
	right: 50%;
	bottom: 40%;
	width: 80px;
	margin: 0 0 0 -40px;
}

a {
    border: 1px solid #FFF;
    border-radius: 5px;
    color: #FFF;
    font-family: DistrictThin;
    text-transform: uppercase;
	text-decoration: none;
    letter-spacing: 1px;
    line-height: 22px;
    opacity: 1;
    padding: 7px 10px 5px;
    transition-delay: 0s;
    transition-duration: 0.7s;
    transition-property: opacity;
    transition-timing-function: ease-in-out;
}

a:hover {
	opacity: 0.5;
	transition: opacity .7s ease-in-out;
	-moz-transition: opacity .7s ease-in-out;
	-webkit-transition: opacity .7s ease-in-out;
	-o-transition: opacity .7s ease-in-out;
}