/*
see Genius CSS here:
https://mattlowe.site/wp-content/themes/genius/style.css?ver=4.9.8
helps to work out how to change things

and choose colours here:
https://www.w3schools.com/colors/colors_picker.asp
http://www.color-hex.com/color/cc0000

possible blues:
#6666ff (too light)
#4d4dff (too much like standard hyperlink)
#0059b3 (too bland)
#3333ff
*/

#desktop-navigation .menu-item a::after {
  content: "";
  display: table;
  position: relative;
  top: 0;
  width: 100%;
  height: 3px;
  opacity: 0;
  background: #3333ff;
}

.site-content a {
  color: #3333ff;
}

.site-content p {
  color: #1a1a1a;
  /* pure black is #000000 */
}

.site-content h3 {
  color: #000000;
}

.site-content title {
  color: #000000;
}


.site-content a:hover {
    text-decoration: underline;
  	background: none;
}