
.error-box p {
    font-family: "微軟正黑體";
}

.error-box {
    width: 100%;
    height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 5%;
    box-sizing: border-box;
}

.error-box .txt-en {
    font-size: 31px;
    margin: 0 0 32px 0;
    font-weight: 900;
    color: #564a4a;
}

.error-box .txt-cht {
    font-size: 3rem;
    background: #a2a2a2;
    border-radius: 50px;
    padding: 7px 33px;
    color: white;
}

@media (max-width: 500px) {
    .error-box .txt-cht {
        font-size: 18px;
    }

    .error-box .txt-en {
        font-size: 22px;
        margin: 27px 0 32px 0;
    }

}