* {
    margin:0;
    padding:0;
}
/* -------------------------------------- */
body, html {
    height:100%;
} 
body {
    background-color: rgb(0, 0, 75);
    color: gold;
    font-size:x-large;
}
footer{    
    position:relative;
    bottom:0;
    width:100%;
    padding-top: 5em;
    padding-bottom: 5em;
    text-align: center;
    background-color: rgb(35, 49, 88);
}
/* -------------------------------------- */
.content {
    max-width:1280px;
    min-height:80%;
    margin:0 auto;
    position:relative; 
}  
.navigation {
    background-color: rgba(0, 0, 0, 0.267);
    overflow: hidden;
    width: 100%;
    margin: 0 auto;
    margin-top: 3em;  
    position: relative;
    min-height: 1em;
  }
  .twoColumn {
    float: left;
    width: 50%;
  }
  .threeColumn {
    float: left;
    width: 30%;
    padding: 0em 1.665%;
  }
  
  /* Clear floats after the columns */
  .row:after {
    content: "";
    display: table;
    clear: both;
  }
/* -------------------------------------- */
h1 {
    text-align: center;
    text-decoration: underline;
    padding-bottom: 1em;
    padding-top: 1em;
}

h2 {
    text-decoration:underline;
    padding-bottom: 1em;
    padding-top: 1em;
}

a {
    color: wheat;
    text-decoration: none;
}
a:hover{
    color: white;
    text-decoration: underline;
}
li{
    padding-top: 1em;
}
/* -------------------------------------- */
.navigation a{
    float: left;
    display: block;
    color: #fffbc1;
    text-align: center;
    padding: 1em ;
    
    text-decoration: none;
}
.navigation a:hover {
    background-color: gold;
    color: rgb(35, 49, 88);
}
/* -------------------------------------- */
@media screen and (max-width: 600px) {
    .twoColumn, .threeColumn {
      width: 100%;
    }
}