html, body {
  background-color: #fff;
  color: #000;
  text-align: center;
  width: 100%;
}

h1, h2 {
  color: #211909;
  width: 100%;
  
}

h1 {
  font-family: 'Kanit', sans-serif;
  font-size: 1.5em;
  margin-top: 50px;
}

h2 {
  font-family: 'Mukta', sans-serif;
  font-size: 2em;
  word-spacing: 0.2em;
  letter-spacing: 0.1em;
}

main img {
  margin-top: 30px;
}

footer {
  position: fixed;
  top: calc(100% - 30px);
  width: 100%;
  font-size: 0.9em;
  text-align: center;
}

@media only screen and (max-width: 576px) {
  h1 {
    margin-top: 20px;
    font-size: 1.3em;
  }
  
  h2 {
    font-size: 1.7em;
  }
  
  
  main img {
    width: calc(100% - 20px);
  }
}

