@import url(font-awesome.min.css);
@import url("https://fonts.googleapis.com/css?family=Raleway:300,400,700,900");

* {
  box-sizing: border-box;
  transition: all ease-in-out 250ms;
}

body {
  margin: 0;
  font-family: "Raleway", sans-serif;
  text-align: center;
  background: lightslategray;
}
img {
  max-width: 100%;
  height: auto;
}
.container {
  width: 100%;
  max-width: 90%;
  margin: 0 auto;
  
}

header h1 {
  color: #fff;
  font-size: 2.2em;
}
h1 {
  font-weight: 200;
  font-size: 1.7rem;
  margin-top: 1em;
}

p {
  margin-top: 0;
  line-height: 1.4;
  text-align: left;
  padding: 1em;
}

header {
  position: absolute;
  left: 0;
  right: 0;
  margin: 1em;
}
header .logo {
  font-size: 2em;
  margin-top: -1em;
} 
header .logo span {
  font-weight: 900;
}
.selected {
  background-color: #C00;
  color: #FFF;
}
nav {
  border-bottom: 1px solid #ffd501;
  display: block; 
  margin-top:-4em;  
}
nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

nav li {
  display: inline-block;
  margin: 0.4em 0.6em;
}

nav a {
  font-weight: 500;
  text-decoration: none;
  padding: 0.3em;
  text-transform: uppercase;
  color: #fff;
  font-size: 1em;
}

nav a:hover,
nav a:focus {
  color: #ffd501;
}

.teaser { 
  color: #000;
  padding-top:8em;  
}

.button {
  background-color: #69888e;
  color: #fff;
  padding: 1em;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 300;
}
.button:hover {
  background-color: #ffd501;
  color: #000;
}
.active {
  color: #ffd501;
}







