/* a4.css is linked to index.html in assignment4 */

#prisoncell { /* This is the big container */
	height: 1000px;
	width: 1050px;
	margin-left: auto;
	margin-right: auto;
	background-color: #2A292D;
	border-radius: 10px;
}

img {
	float: left;
}

div {
	border-radius: 7px;
	text-align: center;
}

body {
	background-color: black;
}
/* Background was going to be stars but there was none that would suit what I was looking for */

a{ /* Used in all the menu links */
	color: blue;
}


.rightimage { /* help organize images in the .lead header */
	float: right;
	margin-right: 80px;
}

#authority { /* #authority is the header */
	height: 100px;
	width: 1020px;
	float: left;
	clear: both;
	margin-left: 15px;
	background-color: #121B26;
	color: #FFD300;
	margin-top: 15px;
	font-family: impact;
	font-size: 65px;

}

.sidemenu { /* .sidemenu is the sidebar */
	height: 680px;
	width: 165px;
	float: left;
	margin-top: 40px;
	margin-left: 15px;
	background-color: #535b66;
}

.barmenu { /* divs inside .sidedefense that lead to the other pages */
	height: 50px;
	width: 100px;
	float: left;
	margin-top: 25px;
	margin-left: 32.5px;
	padding: 5px;
	background-color: #FFD300;
	font-family: courier;
}

.linkmenu { /* This one is epecially for the sidebar links */
	height: 80px;
	width: 100px;
	float: left;
	margin-top: 25px;
	margin-left: 32.5px;
	padding: 5px;
	background-color: #FFD300;
	font-family: courier;
}

.lead { /* this is the header for .writingbody */
	height: 150px;
	width: 800px;
	float: left;
	margin-top: 40px;
	margin-left: 20px;
	background-color: #a8a8a8;
	font-family: impact;
	font-size: 60px;
	padding: 15px;
}

.writingbody { /* .writtingbody the div that holds the main writting of the page */
	height: 600px;
	width: 800px;
	float: left;
	margin-top: 15px;
	margin-left: 20px;
	background-color: #a8a8a8;
	font-family: courier;
	font-size: 18px;
	padding: 15px;
}








