body {
    font-family: "Lato", sans-serif;
    background-color: #f1f1f1;
    /* display: flex;
    min-height: 100vh;
    flex-direction: column; */
  }
  section#side-nav {
    height: 100%;
    width: 200px;
    position: fixed;
    z-index: 1;
    top: 0;
    left: 0;
    background-color: #312f2f;
    overflow-x: hidden;
    padding-top: 20px;
  }
  
  section#side-nav ul li a {
    padding: 6px 6px 6px 32px;
    text-decoration: none;
    font-size: 25px;
    color: #818181;
    display: block;
  }
  
  section#side-nav ul li a:hover {
    color: #f1f1f1;
  }

  section#side-nav ul li.active a:hover{
    color: #818181;
  }

  section#side-nav ul li.active {
    background-color: #f1f1f1;
  }
  
  section#main {
    margin-left: 200px; /* Same as the width of the sidenav */
    /* flex: 1 0 auto; */
  }
  
  @media screen and (max-height: 450px) {
    section#side-nav {padding-top: 15px;}
    section#side-nav a {font-size: 18px;}
  }