/* General Styles
--------------------------------------------- */
* {margin:0;padding:0;border:0 none; position:relative;}
*,*:before,*:after {
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

body {
	width: 100%;
	height: 100%;
	min-height: 100%;
	background: #f0f0f0;
	font-family: 'Open Sans', arial, sans-serif;
	color: #333;
	font-weight: 400;
	font-size: 18px;
}


.wrapper {
    border: 2px solid #545f1d;
	border-radius: 16px;	
	background: beige;
	margin: auto;
	width: 100%;
	max-width: 680px;
	background-color: #f0f0f0;
	height: 100%;
	min-height: 100%;
}

.header {
	grid-area: header;
}

.leftcol {
	grid-area: leftcol;
}

.rightcol {
	grid-area: rightcol;
}

.container {
	display:grid;
	grid-template-columns 600px 1fr;
	grid-template-rows:auto 1fr;
	grid-template-areas:
    "header header"
    "leftcol rightcol";
}

.container > div {
  background: #f0f0f0;
  padding: 0.5rem;  
  border-radius: 1rem;
}

.title {
	display:inline-block;
	font-family: 'Open Sans', arial, sans-serif;
	font-weight:600;
    font-size: 27px;
    color: #660033;
    text-align: left;
}

.to-blog{
	display:inline-block;
	font-family: 'Source+Serif+Pro';
	font-size: 18px;
	font-weight:600;
    color: #660033;
  	text-align: right;
  	padding-left: 90px;
}

.subtitle {
	font-family: 'Open Sans', arial, sans-serif;
	font-weight:600;
    font-size: 15px;
    color: black;
    text-align: left;
    padding-bottom: 2px;
    padding-left: 30px;
}

.areaheader{
	font-family: 'Open Sans', arial, sans-serif;
	font-weight:700;
	font-size:18px;
	color: #660033;
	line-height: 1.7em;
	margin-top: 10px;
}

.arealink{
	color:#0000CD;
	text-decoration: none;
	font-family: 'Open Sans', arial, sans-serif;
	font-weight:600;
	font-size:16px;
	line-height: 1.5em;
	position:relative;
	left:30px;	
}

a:link {color:#000; text-decoration: none;}
a:visited {color:#000;text-decoration: none;}
a:hover {color:#CC0000;text-decoration: underline;font-weight: normal;}