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;
		vertical-align: baseline;
	}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
    display: block;
}
body {
    width: 100%; height: 100%;
    line-height: 1;
    font-family: 'Open Sans', Helvetica, Verdana, sans-serif;
    font-weight: 400;
    font-size: 13px;
    overflow: hidden;
}

body:before {
    content:"";
    position:fixed;
    left:0;
    top:0;
    right:0;
    bottom:0;
    z-index:-1;
    background-image: url(/css/background.png);
    background-size: 200px;
    -webkit-filter: grayscale(1) brightness(1.25);
    filter: grayscale(1) brightness(1.25);
}

h1 {
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 10px;
}

a {
    text-decoration: none;
    color: #333333;
    font-size: 15px;
    line-height: 18px;
    font-weight: 700;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

a:hover {
    color: firebrick;
}

span {
    font-weight: 600;
}

ol, ul {
    list-style: none;
}

li {
    text-align: left;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after, q:before, q:after {
    content: '';
    content: none;
}

.main-wrapper {
    width: 100%; height: 100%;
}

.container {
    position: absolute;
    left: 50%; top: 50%;
    transform: translate(-50%, -50%);
    overflow: visible;
}

#logo {
    margin-bottom: 35px;
    -webkit-animation-duration: 1.5s;
    animation-duration: 1.5s;
    -webkit-animation-delay: 0.5s;
    animation-delay: 0.5s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown;
}

.content {
    text-align: center;
    padding: 20px 30px;
    background: white;
    border-radius: 7px;
    -webkit-box-shadow:0px 0px 5px 0px rgba(0,0,0,0.4);
    -moz-box-shadow:0px 0px 5px 0px rgba(0,0,0,0.4);
    box-shadow:0px 0px 5px 0px rgba(0,0,0,0.4);
    
    -webkit-animation-duration: 1.5s;
    animation-duration: 1.5s;
    -webkit-animation-delay: 1.2s;
    animation-delay: 1.2s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown;
}