:root {
    --bg: #060606;
    --text: #e4e4e7;
    --text-dim: #A6A6A6;
    --border: #262626;
    --highlight: #ffffff;
    
    --mono: Gotham Consolas, "Liberation Mono", Menlo, Courier, monospace;
}

body {
    background-color: var(--bg);
    color: var(--text);
    font-family: var(--mono);
    font-size: 13px;
    line-height: 1.6;
    max-width: 680px;
    margin: 80px auto;
    padding: 0 24px;
    
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.intro {
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
    color: var(--text-dim);
    font-weight: 400;
    font-size: 13px;
}

ul {
    list-style-type: none;
    padding: 0;
}

li {
    margin-bottom: 0;
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    transition: border-color 0.2s ease;
}

li:last-child {
    border-bottom: none;
}

li:hover {
    border-bottom-color: #3f3f46;
}

a {
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
    display: inline-block;
}

a:hover { 
    color: var(--highlight);
    text-decoration: none;
}

.desc {
    color: var(--text-dim);
    margin-top: 4px;
    font-size: 13px;
    transition: color 0.2s ease;
}

li:hover .desc {
    color: #d4d4d8;
}

@media (min-width: 600px) {
    li {
        flex-direction: row;
        align-items: baseline;
        justify-content: space-between;
    }
    
    a {
        min-width: fit-content;
        margin-right: 30px;
    }
    
    .desc {
        text-align: right;
        margin-top: 0;
    }
}