html {
	background-color: rgb(238, 255, 243);
	font-size: 16px; /* px means "pixels": the base font size is now 10 pixels high */
	font-family: "Open Sans", sans-serif; /* this should be the rest of the output you got from Google Fonts */
}

body {
	width: 600px;
	margin: 0 auto; 
	padding: 0 20px 20px 20px;
  	border: 5px solid black;
	background-color: rgba(184, 230, 253, 0.582);
}

h1 {
	margin: 0;
	padding: 20px 0;
	font-size: 60px;
	text-align: center;
}
  
p,
li {
	font-size: 16px;
	line-height: 2;
	letter-spacing: 1px;
}

img {
	display: block;
	margin: 0 auto;
  }