html {
  /* px means "pixels". The base font size is now 10 pixels high */
  font-size: 10px;
  /* Replace PLACEHOLDER with the font-family property value you got from Google Fonts */
  font-family: "Henny Penny", system-ui;
  background-color: #001aff;
  background-image: url('../images/saurier.gif');
  background-repeat:repeat;
  background-size: 20em;
}

h1 {
  font-size: 60px;
  text-align: center;
  margin: 0;
  padding: 20px 0;
  color: #00539f;
  text-shadow: 3px 3px 1px black;
}

h2 {
  font-size: 40px;
  text-align: center;
}


h3 {
  font-size: 20px;
  text-align: right;
}

p,
li {
  font-size: 18px;
  line-height: 2;
  letter-spacing: 1px;
  text-align: center;
}

body {
  width: 600px;
  margin: 0 auto;
  background-color: #05bbac;
  padding: 0 20px 20px 20px;
  border: 5px solid rgb(221, 0, 203);
}

img {
  display: block;
  margin: 0 auto;
  max-width: 100%;
}