* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

body {
    padding: 0;
    margin: 0;
}

#error-page {
    position: relative;
    height: 100vh;
}

#error-page .error-box {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

#error-page .logo {
    position: absolute;
    left: 48%;
    top: inherit;
    background: #fff;
    -webkit-transform: translate(-50%, 75%);
    -ms-transform: translate(-50%, 75%);
    transform: translate(-50%, 75%);
    z-index: 1;
}

.error-box {
    max-width: 530px;
    width: 100%;
    line-height: 1.4;
    text-align: center;
}

.error-box .message-box {
    position: relative;
    height: 200px;
    margin: 0px auto 20px;
    z-index: -1;
}

.error-box .message-box h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 236px;
    font-weight: 200;
    margin: 0px;
    color: #211b19;
    text-transform: uppercase;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -65%);
    -ms-transform: translate(-50%, -65%);
    transform: translate(-50%, -65%);
}

.error-box .message-box h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    font-weight: 400;
    text-transform: uppercase;
    color: #211b19;
    background: #fff;
    padding: 10px 5px;
    margin: auto;
    display: inline-block;
    position: absolute;
    bottom: 0px;
    left: 0;
    right: 0;
}

.error-box a {
    font-family: 'Montserrat', sans-serif;
    display: inline-block;
    font-weight: 700;
    text-decoration: none;
    color: #fff;
    text-transform: uppercase;
    padding: 13px 30px;
    background: #ff6300;
    font-size: 18px;
    -webkit-transition: 0.2s all;
    transition: 0.2s all;
}

.error-box a:hover {
    color: #ff6300;
    background: #211b19;
}

@media only screen and (max-width: 767px) {
    .error-box .message-box h1 {
        font-size: 148px;
    }
}

@media only screen and (max-width: 480px) {
    .error-box .message-box {
        height: 148px;
        margin: 0px auto 10px;
    }

    .error-box .message-box h1 {
        font-size: 86px;
    }

    .error-box .message-box h2 {
        font-size: 16px;
    }

    .error-box a {
        padding: 7px 15px;
        font-size: 14px;
    }
}