body {
	background-color: #000;
	margin: 0;
	padding: 0;
  color: #45767a;
	font-family: 'Quicksand', sans-serif;
  font-size: 18pt;
}

strong {
	font-weight: normal;
	font-family: sans-serif;
}

.scrolling-image-container {
  overflow: hidden;
}

@keyframes slide {
  0% {
    transform: translate(0);
  }

  100% {
		transform: translate(-2523px); /* The image width */
  }
}

.scrolling-image {
	position: fixed;
  background: url("../img/background.jpg") repeat-x;
  height: 1280px;
  width: 5046px; 
  animation: slide 300s linear infinite;
	z-index: 100;
	
}

@media screen and (max-height: 1080px) {
	.scrolling-image {
		background-size: 60% 60%;
	}
}

.logo-container {
  position: absolute;
	width: 600px;
	top: 0;
	left: 50%;
	margin-left: -368px;
  z-index: 300;
}

.logo-container img {
	margin-top: 30px;
	margin-left: 41px; 
}

.body-container {
	position: absolute;
	top: 340px;
	left: 50%;
	margin-left: -300px;
	width: 600px;
	padding-bottom: 100px;
	z-index: 200;
}

.body-container img {
	width: 100%;
}

.header-text {
	margin-top: -25px;
	margin-bottom: 25px;
}

.contactus {
	font-weight: bold;
	padding: 25px 0;
	text-align: center;
	font-size: 22pt;
}

.contactus a {
	color: #008b8b;
}


@media screen and (max-width: 600px) {
	.logo-container,
	.body-container {
		width: 480px;
 		margin-left: -240px;
	}
	
	.logo-container img {
		width: 100%;
		margin-left: -25px;
	}
}