.not-found-error-container {
    position: relative;
    padding: 10rem 3rem;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto
}

.not-found-error__content {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    border: 3px solid #a3a3a3;
    border-radius: 10px;
    padding: 1rem
}

@media (min-width: 850px) {
    .not-found-error__content {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -webkit-flex-direction: row;
        -ms-flex-direction: row;
        flex-direction: row
    }
}

.not-found-error__description {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    color: #676767;
    padding-right: 0;
    width: 100%
}

@media (min-width: 850px) {
    .not-found-error__description {
        width: auto;
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 50%;
        -ms-flex: 0 0 50%;
        flex: 0 0 50%
    }
}

.not-found-error__description__text--light {
    color: #999;
    font-size: 16px
}

.not-found-error__description__text--strong {
    font-weight: bold;
    font-size: 30px;
    margin: 0.8rem auto;
    line-height: normal
}

.not-found-error__hightlight-code__text {
    font-size: 21px;
    font-weight: bold
}

.not-found-error__hightlight-code {
    background-color: #333;
    color: white;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    border-radius: 10px;
    padding: 5%;
    width: 100%;
    margin-top: 30px
}

@media (min-width: 850px) {
    .not-found-error__hightlight-code {
        width: auto;
        margin-top: 0;
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 50%;
        -ms-flex: 0 0 50%;
        flex: 0 0 50%
    }
}

#not-found .not-found-error__description__text {
    font-size: 20px
}

#not-found .not-found-error__hightlight-code__code {
    font-weight: bold;
    font-size: 60px
}