:root {
    color-scheme: dark;
    color: #ccc;
    background-color: #111
}

body {
    margin: 0
}

* {
    box-sizing: border-box
}

a {
    text-decoration: none;
    color: #2af;
    transition: color .2s
}

a:hover {
    color: #aaa
}

.text {
    font-family: arial;
    padding: 0 1rem
}

.text * {
    all: revert
}

.text a {
    color: #2af;
    text-decoration: none;
    transition: color .2s
}

.text a:hover {
    color: #fff
}

.text h1 {
    font-size: 3rem
}

.text h2 {
    font-size: 2.5rem
}

.text h3 {
    font-size: 2rem
}

.text h4, .text h5, .text h6 {
    font-size: 1rem
}

.text h1, .text h2, .text h3, .text h4, .text h5, .text h6, .text strong {
    color: #fff
}

.text pre {
    padding: 1rem;
    border: 1px solid #333;
    background-color: #111;
    border-radius: .3rem
}

.text table {
    border-collapse: collapse;
    width: 100%
}

.text tr:nth-child(even) {
    background-color: #333
}

.text td {
    border-top: 1px solid #444
}

.text td, .text th {
    padding: .5rem
}

.text th {
    text-align: left
}

.text img {
    height: auto;
    max-width: 100%;
    border-radius: .5rem
}

.text blockquote {
    border-left: 2px solid #f22;
    padding-left: .5rem;
    background-color: #333
}

.text iframe {
    border: none;
    border-radius: .5rem;
    width: 100%;
    aspect-ratio: 16 / 9
}

.fa-circle-check {
    color: #6c6
}