#body{
    padding-top: 1.4rem;
    margin: auto;
    background-color: rgb(182, 216, 216);
    text-align: center;
    width: 80%;
}

svg{
    width: fit-content;
    max-width: 80%;
}

@media screen and (min-width: 601px) {
    html {
      font-size: 16px;
    }
  }
  
  /* If the screen size is 600px wide or less, set the font-size to 12px */
  @media screen and (max-width: 400px) {
    html {
      font-size: 9px;
    }
  }

  @media screen and (max-width: 600px) and (min-width: 401px) {
      html{
          font-size: 12px;
      }
  }