﻿/* error pages */

* {
    margin: 0;
    padding: 0;
}

html {
    height: 100%;
    margin: 0;
    overflow: hidden;
    width: 100%;
}

body {
    background: #00afd2;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#00afd2, endColorstr=#131a5b);
    background-image: -webkit-radial-gradient(circle, #00afd2, #131a5b);
    background-image: radial-gradient(circle, #00afd2, #131a5b);
    font-family: "Open Sans", Arial, Helvetica, sans-serif;
    height: 100%;
    margin: 0;
    width: 100%;
}

header {
    height: 62px;
    position: fixed;
    width: 100%;
    z-index: 3;
}

header .wrap {
    margin: 0 auto;
    max-width: 1024px;
    padding: 0 0 0 20px;
}

header .wrap h1 {
    background: url(../images/logo-all-white.png) no-repeat;
    background-size: contain;
    display: inline-block;
    font-size: 0;
    height: 30px;
    margin: 20px 0 0;
    vertical-align: middle;
    width: 120px;
}

header .wrap h2 {
    color: #fff;
    display: inline-block;
    font-size: 1rem;
    position: relative;
    top: 9px;
}

header .wrap h2:before {
    color: rgba(255,255,255,.5);
    content: "|";
    display: inline-block;
    font-size: 1rem;
    font-weight: 400;
    margin: 0 10px;
    position: relative;
    top: -2px;
}

canvas {
    opacity: .2;
}

canvas + div {
    display: none;
}

.message {
    color: #fff;
    padding-top: 25%;
    position: absolute;
    text-align: center;
    width: 100%;
    z-index: 2;
}

.message .big {
    font-size: 5rem;
    font-weight: 600;
}

.contentwrap {
    color: #fff;
    font-size: 1.1rem;
    margin: 0 auto;
    max-width: 580px;
    padding: 0 10px;
    position: relative;
    vertical-align: middle;
    width: auto;
}

.contentwrap > p {
    display: block;
    font-size: .8rem;
    margin: 0 auto;
    max-width: 580px;
}

.contentwrap > p:first-child {
    font-size: 1.1rem;
    margin: 20px auto;
}

.contentwrap a {
    border-bottom: 1px dotted #ebecb2;
    color: #ebecb2;
    display: inline-block;
    text-decoration: none;
    transition: all .2s linear;
    white-space: nowrap;
}

.contentwrap a:hover {
    border-bottom: 1px solid transparent;
    color: #fff;
    text-decoration: none;
}

@media only screen and (min-width: 768px) {
    header {
        height: 78px;
    }

    header .wrap h1 {
        height: 50px;
        margin: 20px 0;
        width: 200px;
    }

    header .wrap h2 {
        font-size: 1.25rem;
        top: auto;
    }

    header .wrap h2:before {
        font-size: 1.25rem;
        margin: 0 20px;
        top: -2px;
    }

    .message {
        padding-top: 10%;
    }

    .message .big {
        font-size: 10rem;
    }

    .contentwrap p {
        font-size: 1.2rem;
    }

    .contentwrap p:first-child {
        font-size: 1.5rem;
        margin-bottom: 10px;
    }

    .contentwrap:before {
        border-left: 1px solid rgba(255,255,255,.75);
        border-top: 1px solid rgba(255,255,255,.75);
        content: " ";
        display: block;
        height: 52px;
        left: -30px;
        position: absolute;
        top: -20px;
        width: 52px;
    }

    .contentwrap:after {
        border-bottom: 1px solid rgba(255,255,255,.75);
        border-right: 1px solid rgba(255,255,255,.75);
        bottom: -30px;
        content: " ";
        display: block;
        height: 52px;
        position: absolute;
        right: -30px;
        width: 52px;
    }
}