body {
    background-color: white;
    color: black;
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    padding: 0;
    margin: 0;
}

#nav {
    position: fixed;
    bottom: 2em;
    width: 32em;
    left: calc(50vw - 16em);
    background-color: white;
    color:black;
    border-radius: 1.5em;
    height: 3em;
    opacity: 0.8;
    box-shadow: 0 0 1em gray;
    display: flex;
    justify-content: space-around;
    overflow: auto;
    transform:scale(1);
    transition: transform 100ms;
}

#nav.mousedown {
    transform:scale(1.05);
}

#nav > a {
    display: inline-block;
    padding-left:0.5em;
    padding-right: 0.5em;
    padding-top:1em;
    padding-bottom: 1em;
    color:black;
    text-decoration: none;
    text-align: center;
}

@media (max-width: calc(32em + 3vw)) {
    #nav {
    }
  #nav{
    font-size: 3vw;
    height: 3rem;
}
}

#notes {
    height: 100vh;
    width: 100vw;
    border:none;
    font-size: 1.2em;
}