/* --------------------------a11y fixes */

.skip_to_main {
    position: absolute;
    top: -100px;
    left: 1rem;
    z-index: 9999;
  
    padding: 0.75rem 1rem;
    background: #000;
    color: white;
    text-decoration: none;
    font-weight: 700;
    border: 2px solid #fff;
    border-radius: 4px;
  
    transition: top 0.2s ease;
  }
  
  .skip_to_main:focus,
  .skip_to_main:focus-visible {
    top: 1rem;
    outline: 3px solid #000000;
    outline-offset: 2px;
    color: white;
  }
  

a:focus,
button:focus{
  border: 2px solid black;
}