/* Main CSS */

/***********
GENERAL
***********/

* {
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

body {
  font-family: sans-serif;
  margin: 0;
  background: linear-gradient(#d9d7d8, transparent) no-repeat;
  line-height: 1em;
}

#wrapper {
  max-width: 75%;
  margin: 0 auto;
}

#page-wrapper {
  min-height: 100%;
  position: relative;
  
}

a {
  text-decoration: none;
}

a:visited {
  color: darkblue;
}

img {
  max-width: 100%;
}

p {
  line-height: 1.25em;
}

h3 {
  font-family: 'Orbitron', sans-serif;
}

ul {
  line-height: 2;
}

/***********
HEADING
***********/

header {
  float: left;
  background: linear-gradient(#1b32e3, #2332a2 60%);
  border-color: ;
  margin: 0 0 30px 0;
  padding: 10px 0 7px 10px;
  width: 100%;
  line-height: 1;
}

#logo {
  text-align: center;
  margin: 0;
}

h1 {
  display: inline;
  color: white;
  font-family: 'Orbitron', sans-serif;
  font-size: 2.5em;
}

/***********
NAVIGATION
***********/

nav {
  text-align: center;
  padding: 10px 0 15px 0;
  margin: 0 0 50px 0;
  background: #192687;
  border-bottom: 2px solid darkgray;
  font-family: 'Orbitron', sans-serif;

}

nav ul, #footer ul {
  list-style: none;
  margin: 0 10px;
  padding: 0;
  line-height: normal;
}

nav li, #footer li {
  display: inline-block;
}

nav a {
  background-color: #d9d7d8;
  font-weight: 500;
  padding: 15px 10px;
  border: 1px solid white;
  border-radius: 5px 5px 0px 0px;
}

nav a, nav a:visited {
  color: darkblue;
}

nav a.selected {
  background-color: #fff;
  color: #000;
}

nav a:hover {
  background-color: silver;
  color: black;
}


/***********
CONTENT
***********/

.main-info, .news, .info, .news-off {
  background-color: #fff;
  padding-left: 50px;
  padding-right: 50px;
  margin: auto;
  box-shadow: 0 15px 20px -12px rgba(0,0,0, .8);
  
  border-radius: 10px;
} 

.main-info, .info {
  float: left;
  width: 65%;

}

.news, .news-off {
  float: right;
  width: 25%;
  margin-right: 0;
  /*border-radius: 5%;*/
}

.styleless li {
  list-style: none;
}
.group {
  padding-bottom: 100px;
  
}

/* Float Clearfix */

.group:after {
  content: "";
  display: table;
  clear: both;
}

/***********
FOOTER
***********/

#top-wrapper {
  min-height: 100%;
  position: relative;
  
}

#footer {
  height: 100px;
  position: absolute;
  bottom: 0px;
}

#footer li {
  padding: 10px;
}