@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@100..900&display=swap');

:root {
    --color1: #ece3d4;
    --color2: #723e40;
    --color3: #d08447;
    --color4: #d351f4;
}

::-webkit-scrollbar {
    width: 0.5vw;
    height: 0.5vw;
}

::-webkit-scrollbar-corner {
    display: none;
}

::-webkit-scrollbar-thumb {
    background: var(--color4);
    border-radius: 10px;
}

::-webkit-scrollbar-track {
    background: none;
}

* {
    font-family: 'Noto Sans TC', sans-serif;
    box-sizing: border-box;
    word-wrap: break-word;
    word-break: break-word;
    overflow-wrap: break-word;
}