html {
    font-family: "Roboto", sans-serif;
    color: white;
    
} 
html, body {
    overflow: hidden;
    background-color: black;
}

body {
    
    position: absolute;
    width: 100%;
	height: 100%;
}

canvas {
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.1;
}
.pageContainer {
    margin-left: 142px;
    margin-top: 10px;
}
.pageContainer, footer {
    z-index: 5;
    position: relative;
}
.contentBox {
    width: auto;
    position: relative;
    text-align: center;
    background: rgba(100, 100, 100, .5);
    margin-left: 1em;
    margin-right: 1em;
    p, h1 {
        padding: 15px;
        margin-top: 0px;
    }
}

footer {
    background: rgba(100, 100, 100, .8);
    text-align: center;
    position: absolute;
    
    width: 100%;
    
    height: 25px;
    bottom: 0;
    padding-top: 10px;
    padding-bottom: 10px;
}
footer * {
    margin: 0;
    color: black;
}
.topBar {
    position: relative;
    margin: 0;
    padding-left: 20px;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.255);
    border: 2px solid rgba(132, 122, 122, 0.691);
    border-bottom: 0px;
    height: 50px;
    
}
.sideBar {
    position: relative;
    z-index: 5;
    margin: 0;
    padding-left: 20px;
    padding-right: 20px;
    overflow: hidden;
    float: left;
    background-color: rgba(0, 0, 0, 0.255);
    border: 2px solid rgba(132, 122, 122, 0.691);
    border-top: 0px;


    height: calc(100% - 99px);
    width: 100px;
}
.sideBar a {
    color: rgb(171, 47, 47);
    margin-top: 10px;
    display: inline-block;
    
}
@media all and (max-width: 480px) {
  .sideBar { display: none; }
  .pageContainer { margin-left: 0px; }
}