ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: #333;
    position: -webkit-sticky; /* Safari */
    position: sticky;
    top: 0;
  }
  
li {
    float: left;
    border-right: 1px solid #bbb;
  }
  
li a {
    display: block;
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-family: Verdana, Tahoma, sans-serif;
    font-weight: bold;
    }
  
  /* Change the link color to #111 (black) on hover */
li a:hover {
    background-color: #111;
  }

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

 /* Add a gray right border to all list items, except the last item (last-child) */


li:last-child {
    border-right: none;
} 

body {
    margin: auto;
    width: 640px;
    padding-top: 50px;
    height: 100%;
    font-family: 'Lexend Deca', sans-serif;
    color: #2E475D;
    /* text-align: left; */
}
