:root {
    --color-text: #2f3744;
    --color-background: #ffffff;

}

html {
    font-family: ui-sans-serif, -apple-system, "system-ui", "Segoe UI Variable Display", "Segoe UI", Helvetica, "Apple Color Emoji", Arial, sans-serif, "Segoe UI Emoji", "Segoe UI Symbol";
    font-size: 16px;
    line-height: 2;
    font-weight: 350;
    tab-size: 4;
}

body {
    margin: 0;
    line-height: inherit;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--color-text);
    -webkit-font-smoothing: antialiased;
}

body>main {
    display: flex;
    max-width: 40rem;
    padding-left: 2rem;
    padding-right: 2rem;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.25;
    margin-top: 1.5rem;
    letter-spacing: -0.025em;
}

ul {
    padding-left: 1.5em;
    list-style-type: disc;
}

ul>li {
    padding-left: 0.25em;
    padding-top: 0.25em;
}

ul li::marker {
    color: #91a2be;
    transition: color 0.3s;
}

ul li:hover::marker {
    color: #405a84;
}

a {
    color: var(--color-text);
    font-weight: 500;
}

a:hover {
    color: #000;
}

article {
    margin-bottom: 4em;
}

article>h1 {
    margin-top: 2em;
    margin-bottom: 1em;
}