@import url("https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@24,400,0,0");
:root {
    --text: #e3e3e3;
    --sub-text: #626262;
    --background: #131314;

    --card: #1b1b1b;

    --link:#A8C7FA;
}



body {
    background-color: var(--background);
    min-height: 100dvh;
}

* {
    font-family: "Noto Sans TC", sans-serif;
    color: var(--text);
    line-height: 1.4em;
}

main {
    width: 100%;
}

a {
    color: var(--link);
}

h1 {
    font-size: 2rem;
    padding-bottom: .5em;
}

hgroup h2{
    font-size: 1.5rem;
    padding-bottom: 1em;
}

hgroup h3 {
    font-size: 1.2rem;
}

hgroup a {
    font-weight: 300;
}

#info {
    display: flex;
    flex-direction: column;
    width: max-content;
    gap: 1rem;
}



.reading-width {
    max-width: 1920px;
    margin: 2rem auto;
    padding: 1rem;
}

.card {
    padding: 2rem 3rem;
    border-radius: 2rem;
    background-color: var(--card);
    display: flex;
    flex-direction: column;
    overflow: auto;

    &::-webkit-scrollbar{
        height: 6px;
      }
      &::-webkit-scrollbar-track {
        background-color: var(--sub-text);
        border-radius: 10px;
        margin: 20px 130px;
      }
      &::-webkit-scrollbar-thumb{
        border-radius: 10px;
        background-color: var(--text);
      }
}

.card h2 {
    font-size: 1.5rem;
    padding-bottom: 0.8em;
}

table {
    width: 100%;
}

#redirect-archive td, th {
    padding: 1rem 2rem 1rem 0rem;
    text-align: start;
    vertical-align: middle;
    text-wrap: nowrap;
}

#redirect-archive th {
    color: var(--sub-text);
}