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;
    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:552px){
    .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;
}
.intro{
    display: grid;
    grid-template-areas: 'secTitle'
                        'secDesc';
    justify-content: center;
}
.secTitle{
    grid-area: secTitle;
    margin-bottom: 0px;
}
.secDesc{
    grid-area: secDesc;
    max-width: 85em;
    margin-bottom: .5em;
    padding-left: 10px;
    padding-right: 10px;
}
.mainContentContainer{
    margin-left:10px;
    margin-right:10px;
}
.mainContentGrid{
    margin-top:50px;
    margin-bottom: 50px;
    display:grid;
    grid-template-areas:
    'pic1 pic2';
    color: white;
}
.pictureLeft{
    justify-content: center;
    grid-area:pic1;
    display:flex;
}
.pictureRight{
    justify-content: center;
    grid-area:pic2;
    display:flex;
}
.csImage{
    -webkit-transition: all 0.50s;
    transition: all 0.50s;
}
.csImage:hover{
    filter: brightness(130%);
    -webkit-filter: brightness(130%);
    -moz-filter: brightness(130%);
    -webkit-transition: all 0.50s;
    transition: all 0.50s;
}