/* MICRO SOLVE HARD DARK MODE */

html, body{
    background:#0b0b0b !important;
    color:#e6e6e6 !important;
}

/* Kill ALL white backgrounds */
*[style*="background"],
*[style*="background-color"]{
    background:transparent !important;
    background-color:transparent !important;
}

/* Force containers dark */
div, section, main, article, table{
    background-color:#121212 !important;
    color:#e6e6e6 !important;
}

/* Headings */
h1,h2,h3,h4{
    color:#ffffff !important;
}

/* Paragraphs and lists */
p, li{
    color:#d0d0d0 !important;
}

/* Navigation */
nav{
    background:#111 !important;
}
nav a{
    color:#eee !important;
}
nav a:hover{
    color:#ff3b3b !important;
}

/* Buttons */
button, .button, input[type=submit]{
    background:#c8102e !important;
    color:#fff !important;
    border:none !important;
}

/* Links */
a{
    color:#ff3b3b !important;
}
a:hover{
    color:#fff !important;
}

/* Footer */
footer{
    background:#000 !important;
    color:#aaa !important;
    border-top:4px solid #c8102e !important;
}