body {
  background-color: #333;
	font-family: 'Oxygen', sans-serif;
	font-size: 12pt;+
	color:fff;
}

a {
  color: #fff;
  font-weight: 700;
  text-decoration: none;

}

#header {
  position: relative;
  width: 100%;
  height: 150px;
  background: #333;
  display: table;
}
#header h1 {
  display: table-cell;
  vertical-align: middle;
  font-size: 30pt;
  color: #fff;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
}

#navigation {
  position: relative;
  width: 100%;
  height: 50px;
  background: #fff;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
  text-align: center;
  line-height: 50px;
}
#navigation ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-flow: row wrap;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-align-content: center;
      -ms-flex-line-pack: center;
          align-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
#navigation ul li a {
  height: inherit;
  padding: 0 25px;
  display: inline-block;
  -webkit-transition: all 150ms ease;
          transition: all 150ms ease;
  line-height: inherit;
  text-transform: uppercase;
  color:#333;
}
#navigation ul li a:hover {
  background: #333;
  color: #fff;
}
#navigation.fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
}

#container {
	margin-left: 25%;
	margin-right: 25%;
	margin-top: 5%;
	margin-bottom: 5%;
	max-width: 1280;
  	min-height: 300%;
  	font: Oxygen, sans-serif;
  	color:fff;
  
}