html, body{
    margin:0;
    padding:0;
    background-color:hsl(195, 100%, 7%);
}

#canvas{
    margin:0 auto;
    display:block;
    filter:url('#shadowed-goo');
    z-index: 0;
}

svg{
  display:none;
}

nav {
    align-items: center;
    background-color: #ffffff;
    box-shadow:0 0 10px rgba(0,0,0,.09);
    display: flex;
    font-size: 1.4rem;
    height: auto;
    justify-content: space-between;
    left: 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 200;
    padding: 15px;
}

nav ul {
    display: flex;
    gap: 2rem;
    list-style: none;
    padding-right: 100px;
}

nav ul a {
    color: #2d2e32;
    font-weight: 500;
    text-decoration: none;
    transition: all .23s
}

nav ul a:hover {
    color: rgb(0, 68, 255);
}



