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 */
    background-color: #00539f;
  }
  h1 {
    font-size: 60px;
    text-align: center;
  }
  
  p,
  li {
    font-size: 16px;
    line-height: 2;
    letter-spacing: 1px;
  }
  body {
    width: 1800px;
    margin: 0 auto;
    background-color: hsl(343, 100%, 50%);
    padding: 0 20px 20px 20px;
    border: 5px solid black;
  }
  img {
    width: 90%;
    height: 90%;
  }