body {
	background-position: center center fixed;
	background-color: black;
	background-size: cover;
	background-repeat: no-repeat;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	text-decoration: none;
	font-family: 'Ubuntu', sans-serif;
	overflow: hidden;
	text-align:center;
}

h1 {
	text-transform: uppercase;
	font-size:75px;
	color: #fff;
}

.container {
	margin: 0 auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color:white;
    text-align:center;
    z-index: 1;
}

*,
*:after,
*::before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

nav a {
	position: relative;
	display: inline-block;
	margin: 15px 25px;
	outline: none;
	color: #fff;
	text-decoration: none;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-weight: 400;
	text-shadow: 0 0 1px rgba(255,255,255,0.3);
	font-size: 1.35em;
}

nav a:hover,
nav a:focus {
	outline: none;
}

.button a {
	padding: 10px;
	color: #fff;
	font-weight: 700;
	text-shadow: none;
	-webkit-transition: color 0.3s;
	-moz-transition: color 0.3s;
	transition: color 0.3s;
}

.button a::before,
.button a::after {
	position: absolute;
	left: 0;
	width: 100%;
	height: 2px;
	background: #fff;
	content: '';
	opacity: 0;
	-webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
	-moz-transition: opacity 0.3s, -moz-transform 0.3s;
	transition: opacity 0.3s, transform 0.3s;
	-webkit-transform: translateY(-10px);
	-moz-transform: translateY(-10px);
	transform: translateY(-10px);
}

.button a::before {
	top: 0;
	-webkit-transform: translateY(-10px);
	-moz-transform: translateY(-10px);
	transform: translateY(-10px);
}

.button a::after {
	bottom: 0;
	-webkit-transform: translateY(10px);
	-moz-transform: translateY(10px);
	transform: translateY(10px);
}

.button a:hover::before,
.button a:focus::before,
.button a:hover::after,
.button a:focus::after {
	opacity: 1;
	-webkit-transform: translateY(0px);
	-moz-transform: translateY(0px);
	transform: translateY(0px);
}

img {
	height:auto;
	width:auto;
	max-height: 150px;
	max-width: 680px;
}

.signature {
	text-transform: none;
	font-family: 'Kaushan Script', cursive;
	color: #fffff;
	font-size:15px;
}

.signature a {
	color:white;
	text-decoration: none;
}

#slide {
    position: relative;
    bottom: -10000px;
    -webkit-animation: slide 1.5s forwards;
    -webkit-animation-delay: 0s;
    animation: slide 1.5s forwards;
    animation-delay: 0s;
    text-align:center;
}

#slide2 {
    position: relative;
    top: -10000px;
    -webkit-animation: slide2 1.5s forwards;
    -webkit-animation-delay: 0s;
    animation: slide2 1.5s forwards;
    animation-delay: 0s;
    text-align:center;
}

#background {
    -webkit-animation: background 1s forwards;
    -webkit-animation-delay: 1.5s;
    animation: background 1s forwards;
    animation-delay: 1.5s;
}

@-webkit-keyframes slide {
    100% { bottom: 0; }
}

@keyframes slide {
    100% { bottom: 0; }
}

@-webkit-keyframes slide2 {
    100% { top: 0; }
}

@keyframes slide2 {
    100% { top: 0; }
}

@-webkit-keyframes background {
	100% { background-color: rgba(0,0,0,0.4); }
}

@keyframes background {
	100% { background-color: rgba(0,0,0,0.4); }
}

#bg{
  top:0;
  left:0;
  width:100%;
  height:100%;
  position: fixed;
}