/*homework5
name: Jade Holt
date: April 10,2020
Styling and controlling the overflow for each block level element*/

/*ids for each element*/
/*for heading 1*/
#head{
	width:100%;
	height:300px;
	background-color:rgb(150,156,205);
	overflow:visible;
	padding:10px;
	position:relative;
	opacity:0.9;
	}
/*heading 2*/	
#art{
	width:100%;
	height:300px;
	background-color:rgb(150,156,205);
	overflow:scroll;
	padding:10px;
	position:relative;
	opacity:0.7;
	}
/*The last three paragraphs*/	
#list{
	width:100%;
	height:300px;
	background-color:rgb(150,156,205);
	overflow:auto;
	padding:10px;
	position:relative;
	opacity:1.0;
	}
/*Universal class*/
.el{
	border-width:6px;
	border-style:dotted; 
	border-color:rgb(100,150,200);
	margin:.3em .3em .3em 0;/*setting margin*/
	position:fixed;/*position for all boxes*/
	box-shadow:0 5px 5px rgb(155,160,210);/*box-shadow for all boxes*/}