/** Color customization **/
:root {
  --text: #F1F1F1;
  --background: #073cd1;
  --accent: #fc8803;
}

/** Links */
.e-content p a, .e-content p a:visited {
  color: var(--text);
  text-decoration: none;
}

.e-content p a:hover, .h-entry a:hover {
  color: var(--accent);
}

a, p a {
  transition: all .2s ease;
  color: #fc8803;
  text-decoration: underline;
}

a:hover, p a:hover {
  color: var(--accent);
  text-decoration: none;

}


h3 a {
  color: var(--accent);
  text-decoration: none;
}



.h-entry h1 a {
color: var(--text);
text-decoration: none;
}
