@import "/shared/css/root.css";

body {
    font-family: "Poppins", sans-serif;
    background: #0f0f0f;
    color: #e6e6e6;
    padding: 40px 20px;
    line-height: 1.6;
    max-width: 900px;
    margin: 0 auto;
}

p b {
    font-size: 22px;
    color: var(--color-red);
}

p {
    margin: 0 0 10px 0;
}

span {
    display: block;
    white-space: pre-line;
    font-size: 14px;
    background: #1a1a1a;
    padding: 20px;
    border-left: 4px solid var(--color-red);
    border-radius: 6px;
    margin-bottom: 30px;
    color: #cfcfcf;
    overflow-x: auto;
}

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

a:hover {
    text-decoration: underline;
}

i {
    color: #cccccc;
}

br {
    line-height: 2;
}

@media (max-width: 600px) {
    body {
        padding: 20px;
    }

    span {
        font-size: 13px;
        padding: 15px;
    }

    p b {
        font-size: 20px;
    }
}
