/* link colors */

/* The navigation bar */


.navbar {
  overflow: hidden;
  background-color: #333;
  position: fixed; /* Set the navbar to fixed position */
  top: 0px; /* Position the navbar at the top of the page */
  width: 100%; /* Full width */
}

/* Links inside the navbar */
.navbar a {
  float: left;
  display: block;
  color: #f2f2f2;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

.navbar a:visited {
  float: left;
  display: block;
  color: #f2f2f2;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}


/* Change background on mouse-over */
.navbar a:hover {
  background: #ddd;
  color: black;
}


head, body, footer, .navbar {
  font-family: Sans-Serif;
  max-width: 960px;
  margin: auto;
}

body{ 
  padding-top: 60px;
  a:link {
    color: black;
    text-decoration: underline;
    text-decoration-color: grey;
  }
  a:visited {
    color: grey;
  }

  .navbar a:link {
    color: #f2f2f2;
    text-decoration: none;
  }
  
}



footer {
  padding-top:20px
}

ul {
   list-style-position: outside;
   padding-left: 1.5em;
}

