* {
  box-sizing: border-box;
}
body, html{
  /*font-family: Autobus;*/
  /*font-family: Futura;*/
  /*font-family: Century Gothic;*/
  font-family: Baskerville;
  /*font-family: monospace;*/
  height:100%;
  margin: 0;
  font-size: 2.5vw;
}

#main {
  padding: 16px;
  padding-left: 24px;
  padding-right: 24px;
  padding-bottom: 24px;
  margin-top: 25px;
  /* height: 1500px; */ /* Used in this example to enable scrolling */
}


.navbar {
  overflow: hidden;
  display:flow-root;
  background-color: white;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  text-align: center;
}

.navbar a {
  float: right;
  display: block;
  color: dimgrey;
  text-align: left;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 24px;
}

.navbar a{
  margin-top: 20px;
}

#logo {
  margin-top: 0;
}

.navbar a:hover {
  background-color: white;
  color: black;
}

.navbar a.active {
  background-color: white;
  color: black;
}

.footer {
  position: static;
  left: 0;
  bottom: 0;
  width: 100%;
  padding-top: 60px;
  background-color: black;
  color: red;
  text-align: center;
}

#logo:link {
  color: black; 
  background-color: transparent; 
  text-decoration: inherit;
}

#logo:visited {
  color: black;
  background-color: transparent;
  text-decoration: inherit;
}

#logo:hover {
  color: black;
  background-color: transparent;
  text-decoration: inherit;
}

#logo:active {
  color: black;
  background-color: transparent;
  text-decoration: inherit;
}
a:link:active:visited{
  color: orangered;
  text-decoration: none;
}

a:hover{
  color: blue;
  text-decoration: none;
}

a {
  color: orangered;
  text-decoration: none;
}
.navbar a::before {
  content: '';
  display: block;
  height: 5px;
  background-color: red;

  position: relative;
  top: 0;
  width: 0%;

  transition: all ease-in-out 250ms;
}
.navbar a:not(#logo):hover::before {
  width:100%;
}

#logo::before {
  
}

.navbar a.active::before {
  content: '';
  display: block;
  height: 4px;
  background-color: red;

  position: relative;
  top: 0;
  width: 100%;

}

.footer .row {
  width: 100%;
  padding: 5px;
}

.footer .row::after {
  content: "";
  clear: both;
  display: table;
}

.footer .column {
  position: relative;
  float: left;
  padding: 5px;
  width: 33%;
  font-size: 2.5vw;
}


hr {
  background-color: white;
}

a:link:active:visited{
  color: orange;
  text-decoration: none;
}

a:hover{
  color: gold;
  text-decoration: none;
}

a {
  color: orange;
  text-decoration: none;
}

