body {
    margin: 0;
}

#error_wrap {
    height: 100vh;
    width: 100%;
    background: url('/static/common/img/error_bg.png') bottom right / contain no-repeat;
}

#error_wrap .error_msg {
    width: calc(100% - 100px);
    max-width: 1280px;
    margin: 0 auto;
    padding-top: 230px;
}

#error_wrap .error_msg>h1 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #222;
}

#error_wrap .error_msg>p {
    font-size: 18px;
    font-weight: 400;
    line-height: 26px;
    color: #222;
    margin-bottom: 70px;
}

#error_wrap .error_msg>a {
    font-size: 20px;
    font-weight: 700;
    color: #F64E60;
}

@media screen and (max-width:1023px) {

    #error_wrap .error_msg>h1 {
        font-size: 25px;
        margin-bottom: 20px;
    }

    #error_wrap .error_msg>p {
        margin-bottom: 50px;
    }

    #error_wrap .error_msg>a {
        font-size: 18px;
    }
}


@media screen and (max-width:767px) {
    #error_wrap {
        background-image: url('/static/common/img/error_bg_mobile.png');
    }

    #error_wrap .error_msg {
        padding-top: 80px;
    }

    #error_wrap .error_msg>h1 {
        font-size: 20px;
        margin-bottom: 16px;
        text-align: center;
    }

    #error_wrap .error_msg>p {
        font-size: 16px;
        line-height: 23px;
        text-align: center;
        margin-bottom: 32px;
    }

    #error_wrap .error_msg>a {
        font-size: 16px;
        text-align: center;
        display: block;
    }
}