/******************main column sizing controls*************/
* {
	box-sizing: border-box;
}

		/* Style the top area */
			.topbox {
		  overflow: hidden;
		  background:#EEEEEE;
		  width:100%;
		  size:50px;
		}
		
		
		.column1 {
		float: left; /*stuff goes to left*/
		width: 70%;
		 padding: 10px;
		 color: black;
		 }
		
		.column2 {
		 float: left;
		 width: 30%;
		 padding: 15px;
		background:lightsteelblue;
		}
		
		/* Clear floats after the columns */
		.row:after {
		  content: "";
		  display: table;
		  clear: both;
		}
		
		
		/***********Writing styles**********/

h2 {
font-size: 2em;
color: Black;
line-height: 1.15em;
margin: 20px 0 ;
color:black;
font-family:arial;
text-align:left;
}

/*** connect with class="p1" ***/
.p1 {
font-family:arial;
}
.p1::first-letter {
font-size:55px;
font-family:monotype corsiva;
font-style:italic;

}
.p1::first-line {
font-size:30px;
color:red;
}

/*** connect with class="p2" ***/
.p2 {
font-family:arial;
color:white;
}


/***********images****************/

/*using for column 2*/

.img_left{
float:left;
width:55%;
margin-top:3px;
margin-left:5px;
margin-right:8px;
border:2px solid red;
padding:2px;
}
.img_right{
float:right;
width:55%;
margin-top:3px;
margin-left:5px;
margin-right:5px;
border:2px solid red;
padding:2px;
}
/*using for column 1*/
.img_center{
width:100%;
display: block;
margin-left: auto;
margin-right: auto;
margin-bottom:5px;
}
		
Layout



/*RESET*/
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td {margin:0; padding:0; border:0; outline:0; font-size:100%; vertical-align:baseline; background:transparent;} body {line-height: 1;}ol, ul{list-style:none;} blockquote, q{quotes:none;} blockquote:before, blockquote:after, q:before, q:after{content:'';content:none;} :focus{outline:0;} ins{text-decoration:none;} del{text-decoration:line-through;} table{border-collapse:collapse; border-spacing:0;}

/*MAIN CODE FOR BODY*/
body { 
	font-size: 1.25em; /*20px*/
	line-height: 1.25em; /*line spacing*/
	font-family: courier;
	background: #EEEEEE;/*background color*/
	font-weight: bold;
	color: black;/*font color*/
}

header {
background: white; 
width: 100%; 
height: 76px;
position: fixed; 
top: 0; 
left: 0; 
border-bottom: 1.5px solid #C0C0C0; 
z-index: 100;
}

/*Link area settings*/
nav {
float: right;
padding: 20px;
}

/*Main link controls*/
a {
	color: black;
	text-decoration: none;
	font-weight: bold;
}
/*Link HOVER*/
a:hover {
	color: white;
	text-decoration:none;
}

/***Mobile menu icon controls***/
#menu-icon {
display: hidden; /*hidden until @media activates*/
width: 40px;
height: 40px;
background: blue url(../images/menu-icon.png) center;
}

/*when person touches or mouse goes over mobile icon on smaller screen*/
a:hover#menu-icon {
background-color: red;
border-radius: 4px 4px 0 0;
}

ul {
list-style: none;
}

li {
display: inline-block;
float: left;
padding: 10px
}

/***Setup of SECTION area where items show on page***/
section {
margin: 80px auto 40px;
max-width: 1000px; /*width of display area*/
position: relative;
padding: 20px
}
