body {
    margin: 0px;
}

#navBar {
    position: fixed;
    z-index: 1000;
    bottom: -5rem;
    width: 100vw;
    height: 5rem;
    background-color: beige;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: bottom .5s;
}

#navBar.deployed {
    bottom: 0rem;
}

.navButton {
    background-color: #6b6b6b;
    color: white;
    height: 3rem;
    width: 5rem;
    display: flex;
    align-items: center;
    justify-content: space-around;
    border: none;
    box-shadow: 2px 2px 4px #6b6b6b;
}

.dockNavs {
    width: 375px;
    display: flex;
    justify-content: space-around;
}