/*

# Skipnav

A stylesheet to hide a skipnav element, if present, for sighted users. The skipnav element will still be visible to screen-readers and will appear when focused on to avoid confusion.

A skipnav element is considered by this stylesheet to be an element with ID "skipnav".

Version: 0.0.0 (2025-6-3)

*/

#skipnav {

    position: absolute;
    left: -10000px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;

    &:focus {
        position: unset;
        width: unset;
        height: unset;
    }
    
}