
/************Writing styles*************/
* {
	box-sizing: border-box;
}

/* Style the top are */
.topbox {
	overflow: hidden;
	background:black;
	width:100%
}


.column1 {
	float: left;
	width: 70%;
	padding: 10px;
}

.column2 {
	float: left;
	width: 30%;
	padding: 15px;
	background:mediumslateblue;
}
/* Clear floats after the columns */
.row:after {
	content: "";
	display: table;
	clear: both;
}
/***********Writing styles**********/

h2 {
font-size: 2em;
color: #2262AD;
line-height: 1.15em;
margin: 20px 0 ;
color:blue;
font-family:monotype-corsiva;
text-align:center;
}

/*** connect with class="p1" ***/
.p1 {
font-family:arial;
font-size:25px;
}
.p1::first-letter {
font-size:55px;
font-family:monotype corsiva;
font-style:italic;

}
.p1::first-line {
font-size:30px;
color:red;
}

/****************/
.p1a {
font-family:arial;
font-size:25px;
}

/*.p1a::first-letter {
font-size:55px;
font-family:monotype corsiva;
font-style:italic;
}
*/

.p1a::first-line {
font-size:30px;
color:blue;
font-family:monotype corsiva;
}

/*** connect with class="p2" ***/
.p2 {
font-family:arial;
color:white;
}


/***********images****************/

/*using for column 1*/

.img_left{
float:left;
width:50%;
margin-top:5px;
margin-left:5px;
margin-right:8px;
border:2px solid red;
padding:2px;
}
.img_right{
float:right;
width:50%;
margin-top:5px;
margin-left:5px;
margin-right:5px;
border:2px solid red;
padding:2px;
}
/*using for column 2*/
.img_center{
width:100%;
display: block;
margin-left: auto;
margin-right: auto;
margin-bottom:5px;
}

/*****MEDIA QUERY-changes website for mobile or smaller screens*****/
@media only screen and (max-width : 700px) {



/***Place other @media controls below here***/

/******COLUMN @media**********/
.topbox{
width:100%;
margin-bottom:5px;
}

.column1 {
width: 100%;
margin-bottom:5px;
border:2px solid gray;
}

.column2 {
width: 100%;
margin-bottom:5px;
}



.img_left{
width:100%;
display: block;
margin-left: auto;
margin-right: auto;
margin-bottom:7px;
}
.img_right{
width:100%;
display: block;
margin-left: auto;
margin-right: auto;
margin-bottom:7px;
}

}/*closes @media section*/



