.navbar ul{
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    top: 0;
    left:0;
    width: 100%;
}

/*Style for the header links*/
.navbar li{
    float: right;
    display: inline;
}
.navbar li a{
    display: block;
    color: black;
    text-align: center;
    padding: 30px 18px;
    text-decoration: none;
    font-family: serif;
    font-weight: bold;
    font-size: 22px;
    line-height: 30px;
}
/*Change the background color on Mouse Over*/
.navbar li a:hover {
    color: #800000;
}

/*Style the current link*/
.navbar a.active {
    color: #800000;
    outline-color: black;
    border-color: black;
    background-color: transparent;
/*    background-image: url(images/hardwood.jpg);*/
}

/* Style for Logo and Navbar Divs */
.logo{
    float: left;
    width:9%;
    display:flex;
    flex-direction:column;
    background-color: white;
}
.navbar{
    display:flex;
    flex-direction:column;
}

/* Add media queries for responsiveness - when the screen is 500px wide or less, stack the links on top of each other  */

@media screen and (max-width:768px) {
  h1{
    font-size: 20px;
  }
  tr {
    display: grid;
    width:300px;
  }
  td {
    text-align: center;
  }
  table{
    padding-left:25%;
    padding-right: 25%;
  }
  table.center {
    margin-left: auto;
    margin-right: auto;
  }
  .center {
    margin-left: auto;
    margin-right: auto;
  }
  .mylink{
    width:100%;
  }
  .column{
    text-align: center;
    width:100%;
    height:100%;
  }
  .row{
    max-width: 460px;
  }
  .left{
    width:50%;
    max-width: 50%;
  }
  .right{
    width:50%;
    max-width: 50%;
    padding-top: 20px !important;
  }
}

@media screen and (max-width: 600px) {
  ul.topnav li.right,
  ul.topnav li {
    float: right;
    text-align: left;
    padding-right:20px;
  }
  .logo{
    margin-left: 30%;
    width: 50%;
    display: block;
    flex-direction:row;
    background-color: white;
  }
  .navbar{
      display:block;
      flex-direction:row;
      background-color: white;
  }
  .navbar ul{
      list-style-type: none;
      margin: 0;
      padding: 0;
      overflow: hidden;
      top: 0;
      left:0;
      width: 100%;
  }
  /*Style for the header links*/
  .navbar li{
      float: left;
      display: inline;
  }
  .navbar li a{
      display: block;
      color: black;
      text-align: center;
      padding: 20px 6px;
      text-decoration: none;
      font-family: serif;
      font-weight: bold;
      font-size: 18px;
      line-height: 10px;
  }
}
/* End of Website Header Style */

/* Footer */
#footer {
  position: fixed;
   left: 0;
   bottom: 0;
   width: 100%;
   background-color: red;
   color: white;
   text-align: center;
}
.footer2 {
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 20px 2px;
    background-color: #800000;
    color: white;
    text-align: center;
    bottom:0;
    width:100%;
}

a{
    text-decoration: none;
    color: white;
    text-decoration-color: white;
}
a:visited {
    color: white;
}
