/* This is a comment. The stylesheet file is linked to the HTML project in the head section of the webpage. You'll have the chance to edit this later in the lesson. */

/* This is a comment. Stylesheets are written in CSS< a srtyling language for webpages. CSS tells parts of a webpage how to look. Our stylesheet is a separate file. We link to it here. You can put your stylesheet in the head of a webpage, but often we link to them to keep our code clean and use single stylesheets across several webpages at once.  */ 

/* This is a comment. Optional: Step 6. Change the style.  */

	#mySummer{
		margin-left:auto;
		margin-right:auto;
		margin-top:8px;
		height:440px;
		width:500px;
		z-index:999;
		background-color:#fff;
		opacity:.75;
		padding:10px;
		font-family:monospace;
		font-size:64px;
		
	}
	
	#banner{
		width:778px;
		padding:2px;
		margin-right:auto;
		margin-left:auto;
        margin-top:2px;
		background-color:#fff;
		opacity:.75;
		font-size:72px;
		font-family:monospace;
		color:#000;
		z-index:999;
	}
	
	#myPic{
		position:fixed;
		top:0px;
		left:0px;
		height:100%;
		width:100%;
		z-index:-999;
	}
	
	#credits{
		position:fixed;
		bottom:10px;
		font-family: monospace;
		font-size:12px;
		color:#000;
		z-index:999;
		background-color:#fff;
		opacity:.75;
	}
	
	a{
		font-family:monospace;
		font-size:12px;
		color:#000;
	}