@import "headings";

@import "footer";

html {
	* {
		font-family: $font;
	}
	div, h1, h2, h3, h4, h5, p, span {
		color: $text-color;
	}
	a {
		color: $theme-blue;
	}
	#content {
		border-left: 1px solid $border-color;
		border-right: 1px solid $border-color;
	}
}
@media screen and (max-width: 768px) {
	html {
		#content {
			border-left: none;
			border-right: none;
		}
	}
}


