html {
    width: 100%;
}

body {
    background-color: black;
    margin: 0;
    overflow-x: hidden;
    width: 100%;
}

.header{
    position: relative;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100px;
    z-index: 10;
}

.nav {
    margin: auto;
    width: 60%;
}

.brand {
    position: absolute;
    top: 10px;
    height: 80px;
}

.links {
    position: absolute;
    right: 20%;
    top: 50%;
    height: 34px;
    margin-top: -17px;
    font-size: 0;

}

.links > a {
    color: white;
    font-size: 16pt;
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;

    text-decoration: none;
    margin-left: 18px;
    padding-right: 2px;

    position: relative;
}

.wipe {
    color: black;

    position: absolute;
    background-color: white;
    overflow: hidden;
    width: 0;
    left: 0;
    transition: .3s ease;
}

.links > a:hover .wipe {
    width: 100%;
}

::-webkit-scrollbar {
    height: 6px;
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #333;
}

::-webkit-scrollbar-thumb {
    background: #888;
}

::-webkit-scrollbar-thumb:hover {
    background: #aaa;
}

.body {
    position: relative;
    height: 400px;
}

.contact-text a {
    color: #4189a7;
    text-decoration: none;
}

.contact-text a:hover {
    color: #51afd6;
    text-decoration: none;
}

.about {
    position: absolute;
    left: 50%;
    top: 50px;
    
    width: 500px;
    margin-left: -250px;
    
    color: white;
    font-size: 45pt;
    font-family: 'Open Sans', sans-serif;
    text-shadow: 4px 4px 2px black;
    text-align: center;
}

.about:after {
    content:'';
    background:#4189a7;
    position:absolute;
    height:4px;
    bottom: -10px;

    width:200px;
    margin-left: -100px;
    left:50%;
}

.about-split {
    color: #4189a7;
    font-size: 50pt;
}

.shadow {
    text-shadow: 4px 4px 2px black;
}

.contact-text {
    color: white;
    font-family: 'Open Sans', sans-serif;
    font-weight: 300;
    text-align: center;
    font-size: 18px;

    position: absolute;
    left: 50%;
    top: 140px;

    width: 730px;
    margin-left: -365px;
}

.text {

    color: white;
    font-family: 'Open Sans', sans-serif;
    font-weight: 300;
    text-align: center;
    font-size: 18px;

    position: absolute;
    left: 50%;
    top: 140px;

    width: 730px;
    margin-left: -365px;
}

.email {
    color: white;
    font-family: 'Open Sans', sans-serif;
    font-weight: 300;
    text-align: center;
    font-size: 18px;
    position: relative;
}

@keyframes emailhide {
    0% {
        opacity: 0;
    }
    99% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
@-webkit-keyframes emailhide {
    0% {
        opacity: 0;
    }
    99% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
@-moz-keyframes emailhide {
    0% {
        opacity: 0;
    }
    99% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
@-o-keyframes emailhide {
    0% {
        opacity: 0;
    }
    99% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
@keyframes emailhide {
    0% {
        opacity: 0;
    }
    99% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

#email > img {
    height: 24px;
    width: 128px;
    -webkit-animation: emailhide 1s;
    -moz-animation: emailhide 1s;
    -o-animation: emailhide 1s;
    animation: emailhide 1s;
    opacity: 1;
}


.particle-window {
    position: absolute;
    width: 100%;
    height: 400px;
    top: 0px;
    left: 0px;
    border-top: 1px;
    border-bottom: 1px;
    border-left: 0px;
    border-right: 0px;
    border-color: #1f1f1f;
    border-style: solid;
}


.particles {
    background-color: #0f0f0f;
    position: absolute;
    width: 100%;
    left: 0;

    /* Edge only */
    top: 0;
    height: 400px;
    z-index: -1000;
}


.particles-js-canvas-el {
    z-index: -1;
    position: absolute;
}

.alphaimage {
    /*opacity:0.3;*/
    filter: brightness(10%);
    z-index: 3;

    position: absolute;
    width:150px;
    left: 50%;
    margin-left: -75px;

    /* Edge only */
    top: 280px;
}

.alphaimagebottom {
    filter: brightness(25%);
    z-index: 0;

    /* Edge only */
    top: 281px;
    /* IE only */
    display: none;
}

.alphaimagetop {
    filter: brightness(0);
    z-index: 0;

    /* Edge only */
    top: 277px;
    /* IE only */
    display: none;
}

.footer {
    position: relative;
    margin-top: 20px;
    margin-bottom: 20px;
}

.footerlinks {
    font-size: 0;
    font-family: 'Open Sans', sans-serif;
    text-align: center;
    margin-bottom: 5px;
}

.footerlinks > a {
    font-size: 10pt;
    color: #888;
    text-decoration: none;
    margin-left: 10px;
    margin-right: 10px;
}

.footerlinks > a:hover {
    color: #ccc;
}

.footerlinks > .pipe {
    font-size: 10pt;
    color: #888;
}

.copyright {
    font-size: 10pt;
    color: #888;
    font-family: 'Open Sans', sans-serif;
    text-align: center;
}


/*
 * Nav element shift
 */
@media (max-width: 1350px) {
    .header {
        /*height: 150px;*/
    }
    .nav {
        width: 80%;
    }
    .links {
        right: 10%;
    }
}

@media (max-width: 1000px) {
    .header {
        height: 150px;
    }
    .nav {
        width: 100%;
    }
    .brand {
        top: 10px;
        width: 230px;
        left: 50%;
        margin-left: -115px;

    }
    .links {
        /*width: 463px;*/
        left: 50%;
        top: 100px;
        margin-left: -290px;
        margin-top: 0;
    }
}

@media (max-width: 738px) {
    .links {
        width: 380px;
        margin-left: -196px;
        margin-top: 0;
        text-align: center;
    }

    .links > a[href="/"] {
        display: none;
    }

    .links > a {
        margin-bottom: 5px;
        line-height: 25pt;
    }

    .header {
        height: 174px;
    }
}

/*
 * Center element shift
 */

@media (max-width: 1024px) {
}

@media (max-width: 768px) {
    .about {
        font-size: 30pt;
        width: 300px;
        margin-left: -150px;
        top: 25px;
    }
    .about:after {
        width:100px;
        margin-left: -50px;
        left:50%;
    }
    .about-split {
        font-size: 35pt;
    }

    .text {
        font-size: 16px;

        position: absolute;
        top: 100px;
        left: 0px;
        margin-left: 0;

        width: initial;
        padding-right: 40px;
        padding-left: 40px;
    }

    .contact-text {
        font-size: 16px;

        position: absolute;
        top: 100px;
        left: 0px;
        margin-left: 0;

        width: 100%;
    }

    .alphaimage {
        /* Edge only */
        top: 250px;
    }
    
    .alphaimagebottom {
        /* Edge only */
        top: 251px;
    }

    .alphaimagetop {
        /* Edge only */
        top: 247px;
    }

}

/* IE/Edge hacks to fix site */
@media screen { 
    @media (min-width: 0px) {
        /* Not IE */

    }

}

@supports (text-orientation:mixed) {
    /* Not edge/ie */

    .particles {
        /*
         * Disable for now, until chrome fixes the clipping bug
         * https://bugs.chromium.org/p/chromium/issues/detail?id=798155
         */
        top: -50px;
        height: 500px;
        clip-path: inset(50px 0px 50px 0px);
        -webkit-clip-path: inset(50px 0px 50px 0px);

        /*
        clip-path: inset(00px 0px 00px 0px);
        -webkit-clip-path: inset(00px 0px 00px 0px);
        */
        z-index: initial;
    }

    .alphaimagebottom {
        display: initial;
    }
    .alphaimagetop {
        display: initial;
    }

    .alphaimage {
        top: 330px;
    }
    .alphaimagebottom {
        top: 331px;
    }
    .alphaimagetop {
        top: 327px;
    }
}

@supports (text-orientation:mixed) {
    /* Not edge/ie */

    @media (max-width: 768px) {
        .alphaimage {
            /*top: 300px;*/
        }
        .alphaimagebottom {
            /*top: 301px;*/
        }
        .alphaimagetop {
            /*top: 297px;*/
        }

    }
}
