@keyframes backgrounds {
	0% {
		background-image: url(img/background.jpg);
	}
	20% {
		background-image: url(img/background2.jpg);
	}
	45% {
		background-image: url(img/background3.jpg);
	}
	65% {
		background-image: url(img/background4.jpg);
	}
	95% {
		background-image: url(img/background.jpg);
	}
	100% {
		background-image: url(img/background.jpg);
	}
}
html {
	background-color: #000;
	display: table;
	height: 100%;
	width: 100%;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center 0;
	position: relative;
	animation: backgrounds 25s infinite;
}
body {
	display: table-cell;
	vertical-align: middle;
	text-align: center;
	padding: 40px;
	background-color: rgba(0, 0, 0, .4);
	color: white;
	position: relative;
}
.slide {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center 0;
}

.slide1 {background-image: url(img/background.jpg);}
.slide2 {background-image: url(img/background2.jpg);}
.slide3 {background-image: url(img/background3.jpg);}
.slide4 {background-image: url(img/background4.jpg);}
.slide5 {background-image: url(img/background.jpg);}
.slide6 {background-image: url(img/background.jpg);}

.content {
	position: relative;
	z-index: 10;
	font-family: 'Open Sans', sans-serif;
}
h1 {
	font-size: 35px;
	padding: 0 0 60px 0;
	margin: 0;
	text-shadow: 7px 7px 15px #000;
	font-weight: normal;
	font-family: 'Lora', serif;
}
h2 {
	margin: 0;
	padding-bottom: 20px;
	font-size: 22px;
	color: #edff03;
	font-family: 'Black Ops One', cursive;
}
.leftBlock {
	padding: 0 0 60px 0;
	vertical-align: top;
}
.leftBlock ul li {
	text-align: center;
}
.leftBlock ul li a {
	display: inline-block;
	padding: 5px;
}
.rightBlock {
	padding: 0 0 60px 0;
}
.footer {
	display: block;
	font-size: 11px;
}
ul {
	text-align: left;
	margin: 0;
	padding: 0;
}
ul li {
	list-style-type: none;
}
ul li a {
	text-decoration: none;
}
ul li a:hover {
	color: #edff03;
}
p {
	margin: 0;
	padding: 0 0 30px 0;
	line-height: 1.5;
}
a {
	color: white;
}
.rbImage {
	display: block;
	margin: 0 auto 30px;
	max-width: 500px;
}
.rbImage img {
	display: block;
	width: 100%;
}


/* media queries */

@media screen and (min-width: 500px) {
	.leftBlock {
		display: inline-block;
		margin: 0 30px 0 0;
	}
	.rightBlock {
		display: inline-block;
		width: 55%;
		max-width: 600px;
	}
	.rbImage {
		display: inline-block;
		margin: 0 20px 30px 0;
		width: 40%;
	}
}
@media screen and (min-width: 800px) {
	h1 {
		font-size: 60px;
	}
}
