@charset "UTF-8";
/* CSS Document */

*{ /* affects all elements of the whole page */
	/*get rid of default padding and various other elements*/
	padding: 0;
	margin: 0;

}

html{ /* does the whole page */
	background-color: rgba(37,98,45,1.00);

}
h1.pageheading{
	
	padding-top: 20px;
	font-size: 100px;
}

body {
	text-align: center;
	position: relative;
  	display: block;
	align-content: center;
}

p{
	background-color: white;
	font-size: 30px;
}

div.housing{
	position: absolute;
	left: 12.5%;
	width: 75%;
	align-content: center;
	
	border: 3px solid black;
	
}

div.lib01{
	background-color: white;
	padding: 70px;
	text-align: center;
	height: 700px;
	font-size: 50px;
	
}

button.displaylib{
	position: absolute;
	left:30%;
	height: 60px;
	width: 40%;
	font-size: 30px;
	border: 4px solid blue;

}
	
	
