/* hide the logo at the top of the page */
.uk-logo{
display:none;
}

/* Override text selection color to pure white */
::selection {
    background-color: white; /* Pure white background */
    color: black; /* Text color during selection, set to black for contrast */
}

/* For browser compatibility */
::-moz-selection {
    background-color: white; /* Pure white background */
    color: black; /* Text color during selection, set to black for contrast */
}