
/*  DARK MODE TEMPLATE:
    HIGHLIGHTS, BUTTONS, BACKGROUND COLOUR & SOCIAL MEDIA ICONS 

    To change from light mode to dark mode, simply replace "light-mode.css with dark-mode.css"
    in line #43, in the index file, not here. */

    body {
        background-color: #1f1f1f;
    }
    
    .text-custom {
        color: rgb(255, 255, 255);
    }
    
    .rounded-circle {
        border: 2px solid rgba(255, 255, 255, 0.25);
    }
    
    .first-title {
        color: rgb(255, 255, 255);
    }
    
    .header-name {
        color: rgb(255, 255, 255);
    }
    
    .copyright_content {
        color: rgb(255, 255, 255);
    }

    /* Cards colors --------------------------------------------------------------------------------*/

    .p-2 {
        border: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: 0 2px 3px rgb(3,27,78,10%);
        background-color: #282828;
        color: white;
    }
    
    .img_blog {
        padding: 12px;
    }
    
    .rounded {
        border-radius: .25rem !important;
        border: 1px solid rgba(255, 255, 255, 0.1);
    }

    
    /* Basic Icons Info -----------------------------------------------------------------------------------*/
    
    .about-social li a {
        align-items: center;
        color: white;
        background-color: #434343;
        display: inline-block;
        height: 42px;
        width: 42px;
        font-size: 20px;
        border-radius: 50%;
        line-height: 38px;
        transition: all 0.5s;
        text-align: center;
        box-shadow: 2px 5px 8px rgba(0,0,0,30%);
    }
    
    .about-social li a:hover {
        border: 1px solid rgba(255, 255, 255, 0.25);
        color: white;
        background-color: rgba(255, 255, 255, 0.40);
    }
    
    /* Button Colours & Info --------------------------------------------------------------------------------*/
    
    .btn-custom {
        padding: 18px;
        font-size: 16px;
        font-weight: 700;
        transition: all 0.5s;
        letter-spacing: 0.6px;
        color: rgb(255, 255, 255);
        border: 1px solid rgba(255, 255, 255, 0.1);
        background-color: #434343;
        box-shadow: 3px 5px 8px rgba(0,0,0,40%);
    }

    .btn-toggle {
        color: rgb(255, 255, 255);
        background-color: #434343;
        border: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: 3px 5px 8px rgba(0,0,0,40%);
        border-radius: 50%;

    }
    
    .btn-custom:hover,
    .btn-custom:focus,
    .btn-custom:active,
    .btn-custom.active,
    .btn-custom.focus,
    .btn-custom:active,
    .btn-custom:focus,
    .btn-custom:hover,
    .open > .dropdown-toggle.btn-custom {
        color: #fff;
        background-color: rgba(255, 255, 255, 0.40);
        border-color: rgb(0, 0, 0);
    }
