html {
    background: black;
    height: 100%;
    font-family:  Roboto;
}

body {
    margin: 0;
    padding: 0;
    height: 100%;
    overflow: hidden;
}
#navBar{
    z-index: 10;
    position: sticky;
    top: 0;
    left: 0;
    width:100%;
    background: linear-gradient(to bottom, #afafafe6);
    padding: 5px;
}
#navBar .mainNavDiv{
    display: inline;
    width: 20%;
    margin: 0px;
}
#navBar a{
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    text-align: center;
}

#navBar .servicesOptions {
    display: none;
    position: absolute;
    background-color: #afafaf;
    margin: 0px;
    z-index: inherit;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
}

#navBar .servicesOptions a{
    display: block;
    text-align: left;
}

#navBar .borderLink{
    border-left: groove 3px gray;
    border-right: groove 3px gray;
}

#navBar .rightLink{
    border-right: groove 3px gray;
}

#navBar .leftLink{
    border-left: groove 3px gray;
}
/* Hide the navbar sub options globally and set a default font size*/
/*
#navBar .subOption{
    display: none;
    font-size:15pt;
    position: relative;
}
*/
#navLogoLink{
    margin:0px;
    padding:0px;
}

#navBar #serviceLink:hover #servicesDropdown{
    display: block;
}

#navBar a:hover{
    color: #7914b0ff;
}


#acSpell{
    position: fixed;
    z-index: 0;
}


#Content{
    z-index:10;
    position:relative;
    margin:auto;
    padding: auto;
    width: 100%;
    height: 100vh;
    background:
        linear-gradient(#000000b0),
        linear-gradient(#7914b0b3,#74c48c99);
    /*background-color: hsla(256, 0%, 12.4%, .9);*/
}

/*
#testOverlay{
    z-index: 10;
    color:white;
    position: absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
}
*/