html {
  background-color: #FFFFFF;	
  font-size: 10px; /* px means 'pixels': the base font size is now 10 pixels high  */
  font-family: placeholder: this should be the rest of the output you got from Google fonts
}

body {
  width: 1080px;
  margin: 0 auto;
  background-color: #edfcfc;
  padding: 0 20px 20px 20px;
  border: 5px solid black;
}

h1 {
  font-size: 60px;
  text-align: center;	
  margin: 0;
  padding: 20px 0;    
  color: #FFFFFF;
  text-shadow: 3px 3px 1px black;
}

p, li {   
  font-size: 20px;
  line-height: 2;
  letter-spacing: 1px;
}


img {
  display: block;
  margin: 0 auto;
}

a:link {
  color: blue;
}

a:visited {
  color: blue;
}

a:hover {
  color: blue;
}

a:active {
  color: blue;
}

