/*
BASE (MOBILE) SCREENS
These base styles apply to all screen sizes, but may be overridden on larger screens by the media query-driven styles that appear later in this file.
*/

#wrapper {
	padding-bottom: 40px;
}

#content {
	padding-top: 20px;
}

h1 {
	font-size:8vw;
	line-height: 8vw;
	text-shadow: black .3rem .3rem 6px;
	margin-bottom: 1%;
}

h2.byline {
	font-weight: normal;
	margin-top: 12px;
	text-align: center;
}

p.dateline {
	margin-top: 0;
	text-align: center;
}

#column_2 {
	padding-top: 45px;
}


/*
PHONES in LANDSCAPE ORIENTATION
*/
@media only screen and (min-width: 500px) {

}




/*
TABLETS in PORTRAIT ORIENTATION
*/
@media only screen and (min-width: 700px) {

#content {
	padding-left: 4%;
	padding-right: 4%;
}

#column_1 {
	float: left;
	width: 46.5%;
}

#column_2 {
	float: right;
	width: 46.5%;
	padding-top: 0;
}

h1 {
	margin-bottom: 3%;
}

} 



/*
TABLETS in LANDSCAPE & LAPTOPS
This is the first appearance of the "desktop layout"
*/
@media only screen and (min-width: 950px) {

h1 {
	font-size: 80px;
	line-height: 80px;
	margin-bottom: 15px;
}

}



/*
TABLETS in LANDSCAPE & LAPTOPS, slightly larger
*/
@media only screen and (min-width: 1000px) {

}


/*
LARGE DESKTOP DISPLAYS
*/
@media only screen and (min-width: 1200px) {

}