/* transitions.css */

a:link {
  transition: color 0.5s;
}

img {
  opacity: 0.25;
  transition: opacity 500ms;
}

img:hover {
  opacity: 1;
}
