/* Fonts from Google Fonts - more at https://fonts.google.com */
@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,700');
@import url('https://fonts.googleapis.com/css?family=Merriweather:400,700');

*{ box-sizing: border-box; }

body {
  background-color: #f5dbdb;
  font-family: "Open Sans", sans-serif;
  padding-left: 10px;
  padding-right: 10px;
  padding-bottom: 0px;
  padding-top: 0px;
  font-size: 18px;
  color: #444;
}

h1 {
  font-family: "Merriweather", serif;
  font-size: 32px;
  text-align: center;
}

nav{
  width: 100%;
  position: fixed;
  left: 0px;
  top:0;
  background: #f7b0b0;
}

nav ul li{ 
  display: inline-block;
}

ul{
  list-style-type:none;
}


section{
  display: block;
  padding-top:160px;
  padding-bottom: 300px;
}

.link{ color: grey; text-decoration: none; }
.active{ color: #333; }

