/* Removes box highlight on mouse clicks only */
a:focus:not(:focus-visible) {
    outline: none;
    box-shadow: none;
}

/* Removes tap highlight on mobile screens */
a {
    -webkit-tap-highlight-color: transparent;
}

a:link { 
  text-decoration: none; 
} 

a {
  padding: 0px;
  
  color: #FFF;
}

a:hover,
a:focus {
  color: #ff9900;
  transition: background 0.3s, color 0.3s, border-color 0.3s;
}