﻿#error {
    height: calc(100vh - 50px);
    position: relative;
    font-family: 'Times New Roman', serif;
}

#error .error {
    -ms-transform: translate(-50%, -75%);
    -webkit-transform: translate(-50%, -75%);
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -75%) line-height: 1.4;
    max-width: 767px;
    padding: 15px;
    text-align: center;
    width: 100%;
}

#error .error .error-code {
    height: 220px;
    position: relative;
}

#error .error h1 {
    -ms-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    background: linear-gradient(130deg, #ffa34f, #ff6f68);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-size: 186px;
    font-weight: 200;
    left: 50%;
    margin: 0;
    position: absolute;
    text-transform: uppercase;
    top: 50%;
    transform: translate(-50%, -50%);
}

#error .error h2 {
    font-size: 25px;
    font-weight: 200;
    letter-spacing: 3px;
    margin-bottom: 25px;
    margin-top: 0;
    text-transform: uppercase;
}

#error .error p {
    font-size: 16px;
    font-weight: 200;
    margin-bottom: 25px;
    margin-top: 0;
}

#error .error a {
    border-bottom: 1px dashed #ff6f68;
    border-radius: 2px;
    color: #ff6f68;
    font-weight: 200;
    text-decoration: none;
}

#error .error-social > a {
    -webkit-transition: .2s all;
    border: 1px solid #efefef;
    border-radius: 50%;
    color: #ff6f68;
    display: inline-block;
    font-size: 14px;
    height: 40px;
    line-height: 40px;
    margin: 3px;
    transition: .2s all;
    width: 40px;
}

#error .error-social > a:hover {
    background-color: #ff6f68;
    border-color: #ff6f68;
    color: #fff;
}

@media only screen and (max-width: 480px) {
    #error .error .error-code {
        height: 168px;
        position: relative;
    }

    #error .error h1 {
        font-size: 142px
    }

    #error .error h2 {
        font-size: 22px
    }
}