@font-face {
  font-family: "Product Sans";
  src: url(/static/media/fonts/ProductSansRegular.ttf) format("truetype");
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter";
  background-color: rgb(240, 240, 240);

  /* Disable horizontal scroll */
  max-width: 100%;
  overflow-x: hidden;
}


/* Utilities */
.stop-scrolling {
  height: 100%;
  overflow: hidden;
}


/* Section global styles */
.section-title {
  margin-top: 0;
  margin-bottom: 2.5rem;
}

.section {
  padding-top: 5rem;
  padding-bottom: 5rem;
  text-align: center;
  width: 100vw;
}

@media screen and (min-width: 500px) {
  .section-title {
    font-size: 2rem;
  }
}


/* Highlight colour */
::selection {
  background: rgb(208, 208, 208);
}
