/* this is a note */


a {
    color: rgba(255,0,0,1);
}
/* A semi-transparent red link with a color property, .3s duration, linear, 1s delayed transition. */

a:hover {
  transition: all 1s linear 0;
    color: rgba(0,0,255,1);
}
/* The color of the link will take 0.3s to turn solid red at a constant speed one second after being hovered over.  */
