/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {  
  text-align: center;
  color: white;
  font-family:  "Times New Roman", Times, serif; font-weight: bold; font-size: 17px; 
   text-shadow: 0 0 45px rgba(0, 0, 0, 1), 0 -1px 1px rgba(0, 0, 0, 1);
  
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#1e5799+0,7db9e8+100&1+0,1+62,0.7+68,0+100 */
	background: rgb(30,87,153); /* Old browsers */
	background: -moz-linear-gradient(top, rgba(30,87,153,1) 0%, rgba(32,124,202,1) 23%, rgba(32,124,202,1) 23%, rgba(32,124,202,1) 30%, rgba(41,137,216,1) 43%, rgba(125,185,232,1) 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(top, rgba(30,87,153,1) 0%,rgba(32,124,202,1) 23%,rgba(32,124,202,1) 23%,rgba(32,124,202,1) 30%,rgba(41,137,216,1) 43%,rgba(125,185,232,1) 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to bottom, rgba(30,87,153,1) 0%,rgba(32,124,202,1) 23%,rgba(32,124,202,1) 23%,rgba(32,124,202,1) 30%,rgba(41,137,216,1) 43%,rgba(125,185,232,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#1e5799', endColorstr='#7db9e8',GradientType=0 ); /* IE6-9 */
	background-repeat: no-repeat;
}

.content-background {
  background: url("blue%20hill%20harbor.jpg") no-repeat;
  background-size: 750px 580px;
  background-position: top center;
  margin: 50px 0;
  height: 580px;
}

h1 {
	font-family: 'Sail', cursive; font-size: 50px; 
	 text-shadow: 0 0 45px rgba(0, 0, 0, 1), 0 -1px 1px rgba(0, 0, 0, 1);
}

.content { 
	width:700px;
	text-align: center;
	margin:0 auto;
}

li {display: inline; 
padding: 3em;
font-size: 20px;
}

ul {text-align: center;
}

  