body {
    font-family: Helvetica;
    color:white;
    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;
    margin-left: 10px;
    margin-right: 10px;
}
.topBarDiv{
    position:fixed;
    z-index: 2;
    top:-13.5px;
    margin-left: -10px;
    min-width:500px;
    width:100%;
}
.topPageBar{
    height: 40px;
}
@media (max-width:623px){
    .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;
}
.gridLayout{
    display:grid;
    grid-template-areas: 'content1 content1 content1 content1 toc';
}
.divContent{
    grid-area: content1;
    max-width: 1311px;
}
.tableOfContents{
    grid-area:toc;
    background-color: rgb(36,37,38);
    padding-left: 10px;
    padding-right: 10px;
    height: 97.5vh; /* can use vh if you ever want to set to like 97.5% of screen. I'm doing it now, but it might break*/
    top:25px;
    position:sticky;
    overflow-y: scroll;
    align-self:flex-start;
}
@media (max-width:1017px){
    .tableOfContents{
        display:none;
    }
}
.aTOC{
    color:white;
    text-decoration: none;
}
.aTOC:visited{
    text-decoration: none;
    color:white;
}
.aTOC:hover{
    text-decoration: underline;
}
.tocListText{
    padding-left: 10px;
    margin-bottom: 20px;
    font-size: 12px;
    line-height:1.5
}
.smallListItem{
    margin-left: -20px;
}
.mainPage{
    position: relative;
    top: 50px;
    margin:0 auto;
    max-width: 90.75em;
    background-color: rgb(51, 48, 45);
    border-style:ridge;
    border-color:black;
}
.threeBox{
    margin: 0 auto;
    display: grid;
    grid-template-areas:
    'box1 box2'
    'box1 box3';
    column-gap: 4px;
    row-gap:0px;
}
.box1{
    grid-area: box1;
}
.box2{
    grid-area: box2;
}
.box3{
    grid-area: box3;
    position: relative;
    bottom: 10px;
}
.fillBox{
    height: 300px;
    width: 100%;
    border-style: ridge;
}
.fJamBorder{
    margin:0 auto;
    justify-content: center;
    max-width:100%;
    height: 55px;
    background-image: url("../Images/Forsen Emotes/ForsenJAM2x.webp");
    background-repeat: repeat;
}