/*
    Overrides the default styling used by some browsers to better reflect the website's theme

    Selection is disabled on certain elements too.
*/

body ::selection
{
    background: #4CAF50;
    color: white;
}

body ::-moz-selection
{
    background: #4CAF50;
    color: white;
}

body ::-o-selection
{
    background: #4CAF50;
    color: white;
}

body ::-ms-selection
{
    background: #4CAF50;
    color: white; 
}

body ::-webkit-selection
{
    background: #4CAF50;
    color: white;
}

nav, img
{
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}