.error-box{

    width: 1000px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.error-box-body{
    padding-left: 100px;
}

.error-box .error-code{
    font-weight: 500;
    font-size: 155px;
    line-height: 184px;
    color: #120E40;
    opacity: 0.2;
}

.error-box .error-message{
    font-size: 16px;
    line-height: 19px;
    background: none;
    border: none;
    box-shadow: none;
}

.error-message-title{
    font-size: 35px;
    line-height: 41px;
}

.error-box .btn{
    display: inline-block;
    padding-left: 50px;
    padding-right: 50px;
}

@media screen and (max-width: 1170px)  {
    .error-box{
        width: 95%;
    }
}

@media screen and (max-width: 768px)  {
    .error-box{
        display: block;
        padding-top: 50px;
    }

    .error-box-cover{
        width: 100%;
        text-align: center;
    }

    .error-box-body{
        width: 100%;
        text-align: center;
        padding: 0;
    }
}

@media screen AND (max-width: 600px) {
    .error-box-cover{
        display: none;
    }
}