/* Enter Your Custom CSS Here */

/* remove footer from all pages */
#colophon.site-footer { 
  display:none; 
}

/* add semi-transparent background to page content, needed due to custom background images */
.page .site-content {  
  background:#7f7f7f;
  background:rgba(255,255,255,0.7);
}

/* make home page background very light, and darken up link text accordingly */
.home .site-content {  
  background:#7f7f7f;
  background:#333;
  background:rgba(255,255,255,0.2);
}

.home .entry-content a {
  color: #000;
}

.home .entry-content a:visited {
	color: #000;
}

.home .entry-content a:hover,
.home .entry-content a:focus,
.home .entry-content a:active {
	color: #39C;
}

/* make all text black */
body,
button,
input,
select,
textarea {
	color: #000;
}

/* make table backgrounds transparent instead of white */
.table {
  background: transparent;
}