/* CSS responsive fixed full width header, footer, content sections by Lindsey Di Napoli of CSSgirl Dev & Design */

* {
	-webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
  	-moz-box-sizing: border-box;    /* Firefox, other Gecko */
  	box-sizing: border-box; 
}

body {
	background: #fff;
	color: #52514E;
	font: 100% 'Josefin Sans', sans-serif;
	line-height: 1.25em;
}

h1 {
	font-size: 6em;
	margin: .1em 0 .5em 0;
	line-height: 1.15em;
	font-family: 'Amatic SC', cursive;
	color: #4E3C52;
	text-align: center;
}

h2 {
	font-family: 'Josefin Sans', sans-serif;
	font-size: 3em;
	margin: .5em 0 .5em 0;
	text-align: center;
	color: #30023B;
}

p {
	margin: 1.5em 0;
	font-size: 1.75em;
	line-height: 1.5em;
	font-family: 'Josefin Sans', sans-serif;
	color: #30023B;
}

a {
	color: #8406A1;
}

a:visited {
	color: #500461;
}

.main {
	width: 100%;
	margin: 0 0 0 0;
}

.social a {
		color: #30023B;
}

.container {
	margin: 0 auto;
	max-width: 75em;
}

.header, .footer, .post {
	padding: 1em;
}

.header, .footer, .header a, .footer a {
	color: #755B7A;
}

.header {
	background: #755B7A;
}

/* For this demo I have the logo and tagline at 50% of the screen on all screen sizes. Most likely you may need to adjust these widths and the breakpoints for various viewport sizes. */
.logo, .tagline {
	width: 50%;
	float: left;
}

.tagline {
	text-align: right;
}

.content {
	padding: .5em 0;
}

.content-second {
	background: #D0EDF3;
}

.content-third {
	background: #F9F2E0;
}

.post-sidebar {
	float: left;
	width: 70%;
}

.sidebar-right {
	float: right;
	width: 30%;
	padding: 1em;
}

/* Media query to make the sidebar drop and stack below the content when the screen is smaller than 800px, and giving both the sidebar and content to the left 100% width. */
@media (max-width: 800px) {
	.sidebar-right, .post-sidebar {
		width: 100%;
		float: none;
	}
	.sidebar-right {
		padding-top: 0;
	}
}

.box-area {
	padding: 1em;
	background: #7E9FA7;
	color: #F3FDFF;
	margin-top: 1.2em;
}

.footer {
	background: #755B7A;
	text-align: center;
}