body {
    font-family: "微軟正黑體";
}

a {
    word-wrap: break-word;
}

.about_title {
    color: var(--color_one);
    font-weight: bold;
    font-size: 4rem;
    margin: 20px 0;
}

.about_text {
    text-align: start;
    line-height: 1.5;
}

.box {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.text_endbox {
    border-left: 2px solid #000;
}

.item {
    height: 100%;
    border-radius: 15px;
    font-size: 20px;
    background-color: var(--color_three);
    padding: 10px 15px;
    color: var(--font_color_one);

}

@media (max-width:992px) {
    .text_endbox {
        border-left: none;
    }

    .about_title {
        font-size: 2.5em;
    }

    .about_text {
        text-align: justify;
    }

}

@media (max-width:576px) {
    .about_text {
        font-size: 1.2em;
    }

}