body {
    font-family: Helvetica;
    color:black;
    background-image: url("../Images/backgrounds/greydiant.png");
    background-size: 100%;
}
h1 { 
    display: block;
    font-weight: normal;
    font-style: normal;
    font-size:20px;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    color:white;
    height: 40px;
    text-align: center;
    line-height: 2;
    background-color: rgb(36,37,38);
}
h2 {
    font-size: 50px;
    font-weight: bold;
    text-align: center;
    color:white;
}
h3 {
    font-size: 40px;
    font-weight: bold;
}
p{
    font-family: Helvetica,sans-serif,arial;
    text-indent: 20px;
    font-size: 18px;
}
.topBarDiv{
    position:fixed;
    z-index: 2;
    top:-13.5px;
    margin-left: -10px;
    min-width:500px;
    width:100%;
    height: 40px;
}
/*@media (max-width: 598px) {
    .topBarDiv {
      drop down think or vertical or idk;
    }
  } eventually we can use this to make a dropdown instead of using JS. 
*/
.topPageBar{
    height: 40px;
}
@media (max-width:569px){
    .topPageBar{
        height: 80px;
    }
}
.topPageBarElement{
    padding-right: 10px;
    padding-bottom: 6.5px;
    border-right-width: 2px;
    border-left-width: 0px;
    border-top-width: 0px;
    border-bottom-width: 0px;
    border-style: solid;
    border-color:rgba(154, 154, 154, 0.5);
    color:white;
    text-decoration: none;
}
.topPageBarElement:hover{
    padding-right: 10px;
    padding-bottom: 6.5px;
    border-right-width: 2px;
    border-left-width: 0px;
    border-top-width: 0px;
    border-bottom-width: 0px;
    border-style: solid;
    border-color:rgba(154, 154, 154, 0.5);
    color:skyblue;
    text-decoration: none;
}
.topPageBarElementLast{
    padding-right: 10px;
    padding-bottom: 6.5px;
    color:white;
    text-decoration: none;
}
.topPageBarElementLast:hover{
    padding-right: 10px;
    padding-bottom: 6.5px;
    color: skyblue;
    text-decoration: none;
}
.mainPage{
    position: relative;
    top: 50px;
    margin:0 auto;
    max-width: 99.75em;
    min-width: 1300px;
    background-color: rgb(51, 48, 45);
    border-style:ridge;
    border-color:black;
}
.mainContentContainer{
    margin-left:10px;
    margin-right:10px;
}
.mainContentGrid{
    margin-top:50px;
    margin-bottom: 50px;
    display:grid;
    grid-template-areas:
    'picture  textpic textpic textpic'
    'textpic2 textpic2 textpic2 textpic2';
    color: white;
}
.picContainer{
    display: flex;
    justify-content: center;
    grid-area: picture;
    margin-bottom: 10px;
}
.picDescText{
    grid-area: textpic;
    margin-left: 20px;
    margin-right:20px;
}
.picDescText2{
    grid-area: textpic2;
}
