/*
	use these properties to center a tag that is inside of the tag with these properties.			
	 display: flex;
	 justify-content: center;
	 align-items: center;			
*/

* {
 font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;
 /*border:1px solid black;*/
}
				
/*
 This is a custom class to 'stack' elements vertically and centered.
*/		
.stacked {
 display: flex;
 justify-content: center;
 align-items: center;		 
 flex-direction: column;
}

.header {
 padding:2% 0%;/*set padding above and none in sides*/
 
 color:black;
 background-color:#c00;
 
}

#left_sidebar {
	padding: 10% 0% 0% 0%;/*set padding above*/
}

#main_content{
 margin:  5% 0% 5% 0%;/*set margin above and below*/
 padding:10%;		 
 
 border: 2px solid #CCC;/*gray border to the container of the poem*/
 
}