a:link {
  color: PowderBlue;
  text-decoration: none;
}

/* visited link */
  a:visited {
  color: PowderBlue;
  text-decoration: none;
}

/* mouse over link */
  a:hover {
  color: Plum;
  text-decoration: none;
}

/* selected link */
  a:active {
  color: Plum;
  text-decoration: underline;
}

body {
  color: #ddd;
  font-family: Garamond, serif;
  font-size: 18px;
  background-color: DarkSlateGrey;
  margin: 0;
  padding: 0;
} 


.header{
    color: #ddd;
    font-family: Garamond, serif;
    font-size: 24px;
    background-color: DarkSlateGrey;
    width: 100%;
    margin-top: -20px;
    margin-bottom: -20px;
}

/* Style the top navigation bar */
#navbar, .topnav {
  overflow: hidden;
  background-color: #333;
  width: 100%;
  font-size: 24px;
}

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

/* Change color on hover */
/* .topnav a:hover:not(.active) { */
.topnav a:hover {
  background-color: #ddd;
  color: DarkSlateGrey;
  color: DarkOrchid;
}

.active {
  background-color: #04AA6D;
}

.column {
    margin-top: 4px;
    margin-left: 5px;
    font-size: 18px;
}



/* Responsive layout - when the screen is less than 400px wide, make the navigation links stack on top of each other instead of next to each other */
@media screen and (max-width: 400px) {
  .topnav a {
    float: none;
    width: 100%;
  }
}

