html, body {
    margin: 0;
    height:100%;
    width:100%;
    padding:0;
}
nav.floating-nav,
#section1 nav {
    position: fixed;
    top: 240px;
    z-index: 9999;
}
nav.floating-nav a.button,
#section1 nav a.button {
    background-color: #fff;
    color: #fff;
    text-decoration: none;
    font-weight: 400;
    border: solid 1px #CCC;
    border-radius: 40px;
    height: 18px;
    display: flex;
    align-items: center;
    overflow:hidden;
    width: auto;
    max-width: 18px;
    -webkit-transition: max-width 0.5s;
    transition: max-width 0.5s;
    padding: 10px 11px 10px 10px;
    margin: 5px;
}
nav.floating-nav a.button:hover,
#section1 nav a.button:hover {
    color: #999;
    background-color: #fff;
    max-width: 400px;
}
nav.floating-nav a.active,
#section1 nav a.active {
    color: #999;
}
nav.floating-nav .icon,
#section1 nav .icon {
    margin-right: 15px;
    padding: 0px 0px 0px 3px;
    display: flex;
    align-items: center;
}
nav.floating-nav .text,
#section1 nav .text {
    color: #000;
    white-space: nowrap;
    padding-right: 5px;
}
nav.floating-nav .text:last-child,
#section1 nav .text:last-child{
    padding-right: 15px;
}

@media only screen and (max-width: 767px) { 
    nav.floating-nav,
    #section1 nav {
        display: none;
    }
}