body {
    font-family: Montserrat; font-size: 22px;
    background-color: #121212;
    color: rgba(255, 255, 255, 0.88);
}

/*Links*/

a:link {
  color: LightSteelBlue;
  background-color: transparent;
  text-decoration: none;
}

a:visited {
  color: MediumPurple;
  background-color: transparent;
  text-decoration: none;
}

a:hover {
  color: Thistle;
  background-color: transparent;
  text-decoration: none;
}

a:active {
  color: Thistle;
  background-color: transparent;
  text-decoration: none;
}

/*Layout*/

.header {
  /*background-color: #f1f1f1;
  padding: 20px;*/
  text-align: center;
}

/* The navbar container */
.topnav {
  overflow: hidden;
  background-color: #333;
}

/* Navbar links */
.topnav a {
  float: left;
  display: block;
  color: #f2f2f2;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

/* Links - change color on hover */
.topnav a:hover {
  background-color: #ddd;
  color: black;
}

.footer {
   position: fixed;
   left: 0;
   bottom: 5px;
   width: 100%;
   text-align: center;
}