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;
}
.topBarDiv{
    position:fixed;
    z-index: 2;
    top:-13.5px;
    margin-left: -10px;
    min-width:500px;
    width:100%;
}
.topPageBar{
    height: 40px;
}
@media (max-width:666px){
    .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: 90.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: 2.5em;
    padding-left: 10px;
    padding-right: 10px;
}
.gContainer{
    display:grid;
    grid-template-areas: 'gImage gText';
    column-gap: 15px;
    align-items: center;
    margin-bottom:2.5em;
}
.goalImage{
    grid-area: gImage;
    border-style: ridge;
    border-color:grey;
    margin-left: 10px;
    width: 100%;
}
.goalText1{
    grid-area: gText;
    justify-content:center;
    display:flex;
    flex-wrap:wrap;
    padding-left: 10px;
    padding-right: 10px;
}
@media (max-width:1442px){
    .gContainer{
        grid-template-areas: 
        'gImage'
        'gText';
    }
    .goalImage{
        margin: 0 auto;
        width:90%;
    }
}