@import url("https://fonts.googleapis.com/css2?family=Montserrat&display=swap");
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Montserrat", sans-serif;
}

@media (width > 768px) {
  html {
    font-size: 16px;
  }
}
@media (width <= 768px) {
  html {
    font-size: 12px;
  }
}

body {
  background-image: linear-gradient(0deg, transparent calc(100% - 1px), #f0f0f0 calc(100% - 1px)), linear-gradient(90deg, transparent calc(100% - 1px), #f0f0f0 calc(100% - 1px));
  background-size: 32px 32px;
  background-repeat: repeat;
  background-position: center center;
}

main {
  width: 95%;
  max-width: 1200px;
  margin: 1.5rem auto;
}
main .section .section-title {
  font-size: 2rem;
}

@media (width <= 768px) {
  .section-title {
    text-align: center;
  }
}/*# sourceMappingURL=main.css.map */