.skip-link {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 1000;
    transform: translateY(-150%);
    transition: transform 0.3s ease;
    margin: 0px !important; /* this has an !important because we already force the margin on the buttons that we inherit from. */
}

.skip-link:focus {
    transform: translateY(0);
}
