﻿@media (prefers-color-scheme: dark) {
    /* Styles for dark mode users */
    body {
        color: #eee !important;
    }

    p {
        color: #fff !important;
    }

    .article-link {
        color: #fff !important;
    }

    input {
        background-color: #fff !important;
    }



    /* Footer */


    .footer {
        background: linear-gradient(135deg,#1f293a, #355070);
    }

    .footer-links>li>a{
        color:#fff;
    }

    .copyright{
        color:#fff;
    }
        .copyright > a {
            color: #fff;
        }

    .social-icon {
        background-color: #f1f5f9!important;
    }


    .testimonial-logo {
        background-color: #fff;
        border-radius: 4px;
        padding: 4px;
    }
}


/* Selection color -> Basic*/

::selection {
    background-color: #007bff !important;
    color: #ffffff !important;
}