body {
    margin: 0px;
    border: 0px;
    background-color: #FFF;
    background-image: url("images/wall.gif");
    background-repeat: no-repeat;
    height: 100vh;
    background-size: 100vw 100vh, cover;
    background-position: 0 0;
    background-attachment: fixed;
    scroll-behavior: smooth;
}
#head {
    display: flex;
    flex-direction: row;
    align-items: center;
    align-content: center;
    justify-content: center;
    padding: 5% 0% 5% 0%;
    width: 100vw;
    max-height: 100px;
//    border-bottom: solid .5px #42424288;
}
h1 {
    display: inline-block;    font-family: 'jost', 'Open Sans', sans-sarif;
    font-size: 5vw;
    letter-spacing: .11em;
    background-color: #bbbbbb;
    color: transparent;
    text-shadow: 0px 2px 3px rgba(255, 255, 255, 0.8);
    -webkit-background-clip: text;
    -moz-background-clip: text;
    background-clip: text;
}
h2 {    font-family: 'jost', 'Open Sans', sans-sarif;
    font-size: 28px;
    letter-spacing: 1px;
    color: #000000;
    margin-bottom: -.5em
}
h3 {    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    font-weight: bold;
    letter-spacing: 1px;
    color: #424242;
    margin-bottom: -.5em
}
h4 {    
    font-family: 'jost', 'Open Sans', sans-sarif;
    font-size: 14px;
    text-decoration: underline;
    text-underline-offset: 3px;
    letter-spacing: 1px;
    color: #424242;
    margin-bottom: -.5em
}
p {    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    color: #565656;
}
b {
    color: #121212;
}
ul {
    margin-left: 0.5em;
    list-style-type: square;
}
li {    font-family: 'Open Sans', sans-serif;
    font-size: 15px;
    color: #464646;
}
.logoContainer {
    display: inline;
}
.wrapsContent {
    width: 100vw;
    display: flex;
    flex-direction: row;
    align-content: center;
    align-items: center;
    justify-content: center;
}
.gtr {
    width: 100%;
}
.content {
    min-width: 720px;
    max-width: 720px;
}
.logo {
    max-width: 50vw;
}

@media screen and (max-width: 800px) {
    .content {
        min-width: 500px;
        max-width: 500px;
    }
    h1 {
        font-size: 7vw;
    }
}

@media screen and (max-width: 600px) {
    .content {
        min-width: 80%;
        max-width: 80%;
        padding: 0px 10% 0px 10%;
    }
    h1 {
        font-size: 7vw;
    }
    .logo {
        max-width: 80vw;
    }

}