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-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: 50px;
    font-weight: bold;
    text-align: center;
    color:white;
}
h3 {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    color:white;
    font-size: 40px;
    font-weight: bold;
}
p{
    font-family: Helvetica,sans-serif,arial;
    text-indent: 20px;
    font-size: 18px;
    color: white;
}
.topBarDiv{
    position:fixed;
    z-index: 2;
    top:-13.5px;
    margin-left: -10px;
    min-width:500px;
    width:100%;
    height: 40px;
}
.topPageBar{
    height: 40px;
}
@media (max-width:645px){
    .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;
    background-color: rgb(51, 48, 45);
    border-style:ridge;
    border-color:black;
}
.descText{
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    padding-left:100px;
    padding-right: 100px;
}
.inTextRect{
    border-style: ridge;
}
@media (max-width: 731px){
    .inTextRect{
        width: 80%;
        height: 80%;
    }
}
.codeBlockSmall{
    display:grid;
    align-items: center;
    grid-template-areas: 
        'cPD codeDesc';
}
.codePicDiv{
display: grid;
justify-content: center;
grid-template-areas: 
    'cpdTitle'
    'cpdPic'
    'cpdPic'
    'cpdPic'
    'cpdPic';
grid-area: cPD;
}
.cpdTitle{
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: 30px;
    font-weight: bold;
    text-align: center;
    color:white;
    grid-area: cpdTitle;
}
.cpdPic{
    border-style: ridge;
    grid-area: cpdPic;
    height: 30em;
    width: 50em;
}
.cpdPicTop{
    border-style: ridge;
    grid-area: cpdPic;
    height: 30em;
    width: 50em;
    border-bottom: 0px;
}
.cpdPicMid{
    border-style: ridge;
    grid-area: cpdPic;
    height: 30em;
    width: 50em;
    border-bottom: 0px;
    border-top: 0px;
}
.cpdPicBot{
    border-style: ridge;
    grid-area: cpdPic;
    height: 30em;
    width: 50em;
    border-top: 0px;
}
.codeDesc{
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    grid-area: codeDesc;
    padding-left: 50px;
    padding-right: 50px;
}
@media(max-width: 1520px){
    .codePicDiv{
        height: 100%;
    }
    .cpdPic{
        width: 100%;
        height: 100%;
    }
    .cpdPicTop{
        width:100%;
        height:100%;
    }
    .cpdPicMid{
        width:100%;
        height:100%;
    }
    .cpdPicBot{
        width:100%;
        height:100%;
    }
    .codeDesc{
        width:50%
    }
}
