/* Josh */
#navBall{
    position: fixed;
    right: 0; left: 0;
    margin-left: auto !important;
    margin-right: auto !important;
    height: 50px;
    width: 50px;
    background-color: #cbb682;
    border-radius: 50px;
    z-index: 999;
    display: flex; justify-content: center; align-items: center;
    color: white;
    font-size: 1.5em;
    font-weight: bold;
    background-image: url('/assets/shapes/down-arrow.png');
    background-position: center;
    background-size: 80%;
    background-repeat: no-repeat;
    border: 1px solid black;
    cursor: pointer;
    transform: rotate(0deg);
    transition: 0.5s ease-in-out;
}
/* Josh : end */

nav {
    background-color: #cbb682;
    position: fixed;
    top: 0;
    width: 100%;
    height: 90px;
    left: 0;
    z-index: 1;
    font-family: myFont;
    font-weight: bold;
    visibility: hidden;
    z-index: 998;
}

nav .index{
    background-color: #cbb682;
    position: fixed;
    top: 0;
    width: 100%;
    opacity: 80%;
    left: 0;
    z-index: 1;
    font-family: myFont;
    font-weight: bold;
}


nav ul {
    list-style: none;
    width: 100%;
    height: 100%;
    /*border: 1px red solid;*/
    display: flex; justify-content: center; align-items: center;
    flex-direction: row;

}


nav ul li {
    float: left;
    height: 100%;
    width: 100%;
    /*border: 1px red solid;*/
    cursor: pointer;
    margin: 20px;
    background-clip: content-box;
}
nav ul li:hover {
    box-shadow: inset 0px 0px 25px 3px rgba(0, 0, 0, 0.2);
}

nav a {
    text-align: center;
    text-decoration: none;
    color: #181510;
    height: 100%; width: 100%;
    display: flex; justify-content: center; align-items: center;

}
