html, body {
    width: 100vw;
    height: 100vh;
    margin: 0px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Lato', sans-serif;
    /* font-weight: 300; */
    font-size: 15px;
    color: #333;
    position: relative;
    display: grid;
    grid-template-columns: min-content 1fr;
    overflow-x: hidden;
}

#container{
    width: 100vw;
    height: 100%;
    transition: margin-left .8s;
    background-color: white;
    display: flex;
    flex-direction: row;
}

nav {
    height: 100%;
    white-space: nowrap;
    margin-left: 12vw;
  }
  nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
  
  }
  /* Only stick if you can fit */
  @media (min-height: 300px) {
    nav ul {
      position: sticky;
      top: 0;
    }
  }
  nav ul li a {
    display: block;
    padding: 0.5rem 1rem;
    color: black;
    text-decoration: none;
  }
  nav ul li a.current {
    background: rgba(236, 196, 76, 1);
  }
  main {
    width: 100vw;
  }
  section {
    padding: 2rem;
    margin: 0 0 2rem 0;
  }

  .display-center {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 50%;
  }

  p {
    font-family: 'Hepta Slab', serif;
    line-height: 35px;
  }

  