html {
  font-size: 10px; /* px means "pixels": the base font size is now 10 pixels high  */
  font-family: 'Kaisei Decol', serif; /* this should be the rest of the output you got from Google fonts */
}

h1 {
  font-size: 60px;
  text-align: center;
}

p {
  font-size: 30px;
  line-height: 1;
  letter-spacing: 1px;
}

li {
  font-size: 20px;
  line-height: 2;
  letter-spacing: 2px;
}

a {
  font-size: 16px;
  line-height: 2;
  letter-spacing: 1px;
}

html {
  background-color: #FFFFFF;
  height: 1280px;
  background-image: url(../images/rogo.png);
  background-repeat: repeat;
}

body {
  width: 1000px;
  margin: 0 auto;
  background-color: #82DDAF;
  padding: 0 20px 20px 20px;
  border: 5px solid black;
}

img {
  display: block;
  margin: 0 auto;
}