*, *:before, *:after {
    -webkit-box-sizing: border-box; 
    -moz-box-sizing: border-box; 
    box-sizing: border-box;
  }

body {
    margin: 0;
    padding: 0;
    background: linear-gradient(170deg, #e7e7e7, #cccccc);
}

.topNavBar {
    display: flex;
    align-items: center;
    width: 100%;
    height: 50px;
    background: #41026a;
    padding: 0px;
}

.topNavBar a {
    color: white;
}





.topNavBarButton {
    height: 50px;
    line-height: 50px;
    vertical-align: middle;
}

.topNavBarButton:hover {
    background: black;
}

.topNavBarButton a {
    text-decoration: none;
    display: block;
    width: 100%;
    height: 100%;
    padding-left: 20px;
    padding-right: 20px;
}

.bodyContainer {
    display:flex;
    align-items: flex-start;
    width:100%;
    
    /*
    height: 100%;
    */

    padding: 0px;
}

.leftSideBar {
    flex: 0 0 250px;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    /* change to 235px with final logo */
    height: 100%;
    background: #cfcc0b;
    padding: 0px;
}

.leftSideBarSubTitle {
    width: 100%;
    height: 40px;
    line-height: 40px;
    text-align: center;
    vertical-align: middle;
    font-size: 24;
}

.leftSideBarButton {
    width: 100%;
    height: 40px;
    line-height:40px;
    text-align: center;
    vertical-align: middle;
}


.leftSideBarButton a {
    text-decoration: none;
    display: block;
    width: 100%;
    height: 100%;
}

.leftSideBarButton:hover {
    background: red;
}

.mainContent {
    width: 100%;
    height: 100%;
    color: black;
    background: green;
}

.mainContentParagraph {
    font-size: 32;
    width: 100%;
    padding-left: 20px;
    padding-top: 14px;
}

.mainContentParagraph:hover {
    background: pink;
}