

body {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 1fr;
}
html, body.welcome {
    background-color: black;
    background-image: url(../img/welcomeBg3.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    position: fixed;
    top: 0;
    bottom: 0;
    width: 100%;
}
#curHeader {
    padding: 1.5em 3% 1em 3%;
    font-family: 'Josefin Sans', sans-serif;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr auto;
    justify-content: start;
    z-index: 999;
    background-color: #000;;
    border-bottom: 2px solid #222;
}

#curHeader h1 a:link {
    color: #fff;
    display: block;
    font-size: 1.5em;
    font-weight: 300;
    margin: 0 0 .5em 0;
}

#curHeader a:link,
#curHeader a:visited {
    color: #fff;
    font-weight: 600;
    font-size: 1.4em;
    text-decoration: none;
    letter-spacing: .03em;
    color: #fff;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-image: linear-gradient( to right,
    #3fb0ac 50%,
    #f5f5f5 50%);
    background-size: 200% 100%;
    background-position: 100%;
}

#curHeader a:hover {
    transition: all 0.25s ease-in-out;
    background-position: 0%;
}
#curHeader nav > ul {
    margin: 0;
    padding: 0;
}
#curHeader nav > ul > li {
    margin: .66em 0;
    display: block;
    padding: 1em .66em;
}
#curHeader ul li > ul {
    background-color: #000;
    margin: 1em 0 0 0;
    padding: 1em .75em .5em .75em;
    display: none;
    border-bottom: 1px solid #222;
    border-left: 1px solid #222;
    border-right: 1px solid #222;
}
#curHeader ul li ul li {
    padding: .85em;
    margin: .6em 0;
    display: block;
}
iframe {
    background-color: transparent;
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    padding: 186px 0 0 0;
    z-index: 0;
}
.welcomeMsg {
    width: 20.2vw;
    color: rgba(255, 255, 255, 0.8);
    margin: 2.5vw 0 0 3vw;
    font-family: 'Josefin Sans', sans-serif;
}
.welcomeMsg hr {
    width: 99%;
    margin: 0 0 1em 0;
}
.welcomeMsg h1 {
    font-size: 5.9vw;
    line-height: 5vw;
}
.welcomeMsg h2 {
    font-size: 4.2vw;
}
.welcomeMsg h3 {
    font-size: 2.38vw;
    margin: 0 0 .1em 0;
}
.welcomeMsg p {
    font-size: 1vw;
}
@media screen and (min-width: 700px){
    body {
        grid-template-rows: 70px 1fr;
    }
    #curHeader {
        padding: 1.5em 3% 1em 3%;
        grid-template-columns: auto auto;
        justify-content: start;
        align-items: end;

    }
    #curHeader h1 a:link {
        color: #fff;
        font-size: 1.5em;
        font-weight: 300;
        margin: 0 3em 0 0;
    }   
    #curHeader nav > ul > li {
        float: left;
        margin: 0 3em 0 0;
        padding: 0 .66em;
    }
    #curHeader ul li > ul {
        background-color: #000;
        position: absolute;
        margin-left: -1.5em;
        padding: 1em .75em .5em .75em;
        display: none;
    }
    iframe {
        padding: 70px 0 0 0;
    }
}