/* 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 {
  background-color:#66CDAA;
  color:white;
  font-family: Verdana;
  text-align:center;
  /* 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;
}

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);
}
h3 {
  text-shadow: 0 0 45px rgba(0, 0, 0, 1), 0 -1px 1px rgba(0, 0, 0, 1);
}

p {
      text-shadow: 0 0 45px rgba(0, 0, 0, 1), 0 -1px 1px rgba(0, 0, 0, 1);
}

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

ul {text-align: center;
}

