/* Styles for the nav bar */

header{
    display: block;
    position: sticky;
    position: -webkit-sticky;
    top: 0;
    z-index: 100;
}

div.topnav {
    margin: 0;
    padding: 0;
    background-color: #101C10;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: stretch;
    text-align: center;
}
  
a.navbutton {
    color: #fff;
    text-align: center;
    padding: 5px;
    line-height: 25px;
    text-decoration: none;
    flex-grow: 1;
    font-size: 20px;
    border: 1px solid #84E884;
    font-family: 'Raleway', sans-serif;
    transition: background-color 0.5s;
}
  
a.navbutton:hover, a.navbutton:focus, a.navbutton:focus-within {
    color: #101C10;
    background-color: #84E884;
    border: 1px solid #101C10;
    text-decoration: none;
    transition: color 0.5s;
    transition: border 0.5s
}