:root {
    --bg: #f5f5f5;
    --text: #222;
}

@font-face {
    src: url(/woff2/0-normal.woff2) format("woff2");
    font-family: ml;
    font-weight: 100 900;
    font-style: normal;
}

body {
    margin: 0;
    font-family:
        monolisa,
        ui-monospace,
        SFMono-Regular,
        "SF Mono",
        Menlo,
        Consolas,
        "Liberation Mono",
        sans-chinese,
        monospace;
    color: var(--text);
    background: var(--bg);
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}

.hero .title {
    text-align: left;
    margin: 0 0 6px 0;
    font-size: 2rem;
    align-self: flex-start;
}

.hero .container {
    text-align: left;
}

.hero .quote {
    margin: 0 0 6px 0;
}

.hero a,
.hero a:visited {
    text-decoration: underline;
    color: var(--text);
    font-size: 0.9rem;
    margin-left: 4px;
}

.hero hr {
    border: 0;
    border-top: 1px solid #bdc3c7;
    margin-top: 5px;
    margin-bottom: 5px;
}

.section-title {
    margin: 10px 0 6px 0;
    font-size: 1.15rem;
    font-weight: 600;
}

.intro {
    margin: 0 0 6px 0;
    color: #555;
    max-width: 400px;
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.links-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.links-list li {
    margin: 10px 0;
}

.links-list a,
.links-list a:visited {
    color: var(--text);
    text-decoration: none;
    margin-right: 8px;
}

.links-list a:hover {
    text-decoration: underline;
}

.links {
    text-decoration: none;
    color: var(--text);
    font-size: 0.95rem;
    opacity: 0.9;
}

.links:hover {
    text-decoration: underline;
    opacity: 1;
}