pre {
    margin-left: 20px;
    background-color: rgba(128, 128, 128, 0.2);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    padding: 10px;
    border-radius: 10px;
    overflow-x: auto;
}

a {
    color: #121212;
    text-decoration: none;
}

a:hover {
    color: #121212;
    text-decoration: underline;
}

a:visited {
    color: #121212;
    text-decoration: none;
}

#markdown-content {
    font-family: Arial, sans-serif;
    line-height: 2;
    letter-spacing: normal;
    margin: 0px 15px 10px 1px;
}

#markdown-content * {
    max-width: 100%;
}

#markdown-content img {
    margin: 0 20px 0 20px;
    display: block;
}

#markdown-content a{
    color: rgb(19, 121, 255);
}

#markdown-content a:hover{
    color: rgb(19, 121, 255);
    text-decoration: underline;
}

@media (prefers-color-scheme: dark) {
    body {
        background-color: #121212;
        color: #e0e0e0;
    }

    a {
        color: #e0e0e0;
        text-decoration: none;
    }

    a:hover {
        color: #e0e0e0;
        text-decoration: underline;
    }

    a:visited {
        color: #e0e0e0;
        text-decoration: none;
    }
}