@font-face {
    font-family: h1_font;
    src: url(../fonts/h1_font.ttf);
}
* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}
html, body, main {
    height: 100%;
    width: 100%;
}
body {
    font-size: .9vw;
    font-family: sans-serif;
    background-color: #52544f;
    color: #f9f7f2;
    background-image: url(../images/background_comming_soon.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
main {
    display: -webkit-box;
    display: -ms-flexbox;
    grid-template-columns: 2fr 15fr;
    display: grid;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}
/*navigation bar*/
aside {
    background: #080808ab;
    width: 100%;
    height: 100%;
    overflow: none;
    z-index: 1;
    text-align: center;
    padding: 0;
}
nav {
    display: block;
}
aside nav img {
    width: 100%;
}
aside a {
    display: block;
    padding: 1.7vw 0 0 0;
    color: #fff;
    -webkit-transition: all 0.35s;
    transition: all 0.35s;
    text-transform: uppercase;
    font-size: .8vw;
    letter-spacing: .1vw;
}
aside a i {
    margin-bottom: 0.2vw;
    font-size: 1.8vw !important;
}
section {
    width: 100%;
}
/*portfolio*/
section h1 {
    font-size: 3.5em;
    text-align: center;
    margin: -.1em 0 1em;
}
section .circle {
    position: relative;
    margin: 0 auto 3em;
    height: 9em;
    width: 9em;
    border-radius: 50%;
    background: #999 url(../imagesg) 80% 0%;
    background-size: 10em 10em;
    -webkit-box-shadow: 0 0 0 0.8em rgba(255, 255, 255, 0.58);
    box-shadow: 0 0 0 0.8em rgba(255, 255, 255, 0.58)
}


section .circle:before, section .circle:after {
    position: absolute;
    content: 'Lorem ispum';
    width: 8.25em;
    font-size: 1.7em;
    top: 2em;
    right: 6em;
}
section .circle:after {
    content: 'Lorem ispum';
    left: 7.25em;
}
section p:not(:first-of-type):before {
    content: '';
    display: block;
    max-width: 49em;
    width: 80%;
    height: 1px;
    background: rgba(0,0,0,0.3);
    border-bottom: solid 1px rgba(255,255,255,0.3);
    margin: 2.5em auto 10px;
}

section p {
    background: transparent;
    line-height: 1.5;
    margin: 1.4em auto;
    max-width: 49em;
    font-size: 1.3em;
}
dfn {
    border-bottom: dotted 1px rgba(0,0,0,0.4);
    cursor: help;
    font-style: normal;
}
section a {
    color: #fff;
    border-bottom: solid 1px rgba(0,0,0,0.4);
    text-decoration: none;
}
section h2 {
    display: none;
    font-weight: 400;
    font-size: 1.8em;
    text-align: center;
}
section span {
    display: none;
    font-size: 1em;
    margin: -1.25em auto;
    text-align: center;
}
@media (max-width: 800px) {
    section h2, section span {
        display: block;
    }
    section .circle {
        margin: -2em auto 2em;
        height: 7em;
        width: 7em;
        border-radius: 50%;
        background: #999 url(https://s3-us-west-2.amazonaws.com/s.cdpn.io/42863/profile/profile-512_5.jpg) 70% 0%;
        background-size: 8.2em 8.2em;
        -webkit-box-shadow: 0 0 0 0.6em rgba(255,255,255,0.3);
        box-shadow: 0 0 0 0.6em rgba(255,255,255,0.3);
    }
    section .circle:before, section .circle:after {
        content: '';
    }
}















