body {
	background-color: #2b2e2c;
	background-image:url(./res/bg3.jpg);
	background-size: cover;
	background-attachment: fixed;
	background-position: center;
	margin: 0;
	font-family: 'Play', sans-serif;
}

.logo {
	max-width:900px;
	width:70%;

	vertical-align: middle;
	margin: 0;
	position: absolute;
	top: 45%;
	left: 50%;
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}

.topnav {
  overflow: hidden;
  background-color: #333;
  position: fixed; /* Set the navbar to fixed position */
  top: 0; /* Position the navbar at the top of the page */
  width: 100%; /* Full width */
  height: 40px;
}

.topnav a {
  float: left;
  display: block;
  color: #f2f2f2;
  text-align: center ;
  vertical-align: center;
  text-decoration: none;
  font-size: 14px;
  line-height: 40px;
  padding: 0px 40px ;
}

.topnav a:hover {
  background-color: black;
}

.topnav a.active {
  background-color: #04AA6D;
  color: white;
}

.topnav .icon {
  display: none;
}

/* When the screen is less than 600 pixels wide, hide all links, except for the first one ("Home"). Show the link that contains should open and close the topnav (.icon) */
@media screen and (max-width: 600px) {
	.topnav a:not(:first-child) {
		display: none;
	}
	
	.topnav a.icon {
		float: right;
		display: block;
	}
}

/* The "responsive" class is added to the topnav with JavaScript when the user clicks on the icon. This class makes the topnav look good on small screens (display the links vertically instead of horizontally) */
@media screen and (max-width: 600px) {
	.topnav.open {
		position: relative;
		overflow: hidden;
		position: fixed; /* Set the navbar to fixed position */
		top: 0; /* Position the navbar at the top of the page */
		width: 100%; /* Full width */
		height: 40px;
	}
	
	.topnav.open a.icon {
		position: absolute;
		right: 0;
		top: 0;
	}
	
	.topnav.open a {
		float: none;
		display: block;
		text-align: left;
		height: 40px;
	}
}

.main {
  margin-top: 40px;
}

#cover {
	background-color: #444;
	height: 280px;
}

.container {
	background-color: #00000033;
	border-radius: 0px;
}

#x1 {
	margin-top: 20px;
	margin-left: auto;
	margin-right: auto;
	width: 960px;
	height: 200px;
}