/* PALLETTE
 * ==================================================================
 */

/* site
 * ------------------------------------------------------------------
 */
body {
    background-color: #06f;
    background-image: url('/assets/imgs/hextile.png');
    color: #fff;
}
#page_header h1 {
    text-shadow: 2px 2px #06f;
}
/* black */
main {
    background-color: #000;
    background-image: url('/assets/imgs/hextile_grey.png');
    box-shadow: 2px 2px 2px #000;
}
/* headers */
h2 {
    text-shadow: 2px 2px #06f;
}
/* links */
a {
    color: #06f;
}
a:hover {
    color: #03b;
}
/*
 * slideshow -------------------------------------
 */
/* Fading animation */
.fade {
  -webkit-animation-name: fade;
  -webkit-animation-duration: 1.5s;
  animation-name: fade;
  animation-duration: 1.5s;
}

@-webkit-keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}

@keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}
