 

html {
  font-size: 10px; /* px means "pixels": the base font size is now 10 pixels high */
  font-family: "Roboto", sans-serif; /* this should be the rest of the output you got from Google Fonts */
}

h1 {
  font-size: 100px;
  text-align: center;
}

h2 {
  font-size: 50px;
}


p,
ul {
  font-size: 32px;
  line-height: 1;
  letter-spacing: 1px;
}

a {
  font-size: 25px;
}

h1 {
  color: blue;
}

html {
  background-color:turquoise;
}

body {
  width: 600px;
  margin: 0 auto;
  background-color: #ff9500;
  padding: 0 20px 20px 20px;
  border: 5px solid black;
}

h1 {
  margin: 0;
  padding: 0px 0;
  color: #00539f;
  text-shadow: 9px 9px 1px black;
}

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