/* /Special/Uncle Norm/styles.css */

*:focus {outline: none;} /* prevents outline on clicked items */
* { /* reset */
	padding:0;
	margin:0;
	box-sizing: border-box;
}
body {
	font-family:arial,sans-serif; 
	font-size:24px;
	font-family:sans-serif;
	background-color:lightblue;
}

#main {
	width:98vw;
	max-width:1200px;
	height:1200px;
	margin:0 auto;
}
#head {
	padding: .5vw;
	display:flex;
	align-items: center;
	justify-content: space-around;
}
#head div img {
	width:80%;
	display:block;
	margin:0 auto;
}
#title {
	color:blue;
	font-style:italic;
	font-family:serif;
	text-align:center;
	font-size: 1.2em;
}
#rest {
	display:flex;
	flex-direction: column;
	align-items: center;
	margin: 0 auto;
}
#pic {
	background-color: ivory;
	border:10px groove gold;
	padding:30px;
	width:100%;
	height:auto;
}
#txt {
	border:2px solid black;
	background-color:#e5ffff;
	text-align:left;
	padding:20px;
	margin-top:10px;
}
