/*
Theme Name: Digital Hill Base Theme
Theme URI: http://www.digitalhill.com/
Author: Digital Hill Multimedia
Author URI: http://www.digitalhill.com/
Description: This is Digital Hill's base theme, intended to be used as a base (parent) for a site's specific theme.
Version: 1.0
License: 
License URI: 
Text Domain: digitalhill
Tags: 
see https://make.wordpress.org/themes/handbook/review/required/theme-tags/
see WordPress' CSS coding standards https://make.wordpress.org/core/handbook/coding-standards/css
*/

body {
	font-family: "Open Sans", sans-serif;
	background-color: #fff;
	line-height: 1.3;
}

.content-area {
	max-width: 1140px;
	margin: 0 auto;
	position: relative;
}

/* add horizontal padding when the screen size is closing in on or less than the .content-area max-width; add 60px to above */
@media (max-width: 1200px) {
	.content-area {
		padding-left: 2%;
		padding-right: 2%;
	}
}

/* Header */
header {
	text-align: right;
}

header .custom-logo-link {
	float: left;
}

header .top/*,
nav*/ {
	overflow: auto;
}

/* inner pages */
main > .content-area {
	padding-top: 2.5em;
	padding-bottom: 2.5em;
	min-height: 22em;
}

/* WAYYYY TOO GENERIC
main .content-area :first-child {
	margin-top: 0;
}

main .content-area :last-child {
	margin-bottom: 0;
}
*/

/* classes added by WP content editor (copied from twentyseventeen) */
.alignleft {
	display: inline;
	float: left;
	margin-right: 1.5em;
}

.alignright {
	display: inline;
	float: right;
	margin-left: 1.5em;
}

.aligncenter {
	clear: both;
	display: block;
	margin-left: auto;
	margin-right: auto;
}
