@charset "utf-8";
/* CSS Document */
body, html {
	min-height: 100%;
}
body {
    background-image: url(bg.jpg);
    background-repeat: no-repeat;
	background-position: center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    font-family: Gotham, "Helvetica Neue", Helvetica, Arial, sans-serif;
    color: #FFFFFF;
    text-align: center;
}
#wrapper {
	margin: 0;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 80%;
}
.logo {
    width: 500px;
    height: auto;
}
h2 {
	font-weight: 700;
	font-size: 26px;
}
p {
    font-weight: 300;
	font-size: 20px;
}

@media (max-width: 1000px){
	.logo {
    width: 100% !important;
    height: auto;
}
	h2 {
	font-size: 36px;
}
p {
	font-size: 26px;
}
}
