:root {
    --background: #fbf3e6;
    --text-main: #1f2328;
    --border: #1e4e8c;
    --undominant: #6a625a;
    --link: #0b4f79;
    --topics: #1e4e8c;
}

body {
    background-color: var(--background);
    color: var(--text-main);
    font-family: "JetBrains Mono", monospace;
    font-optical-sizing: auto;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    font-size: 1.1rem;
}

code,
pre {
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
}

.header h1 {
    margin: 0;
    padding: 1rem 0;
    color: var(--background);
}

.header {
    background-color: var(--border);
    margin-bottom: 1rem;
}

.container {
    display: block;
    width: 100%;
    max-width: 1220px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.content-page h2 {
    color: var(--topics);
    border-bottom: 2px solid var(--topics);
    padding-bottom: 4px;
    margin-bottom: 15px;
}

.list-block span {
    color: var(--undominant);
}

a,
a:visited,
a:link {
    color: var(--link);
    text-decoration: none;
}

.activity-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    /* Very faint separator line */
    font-size: 14px;
}
