@font-face {
  font-family: 'Montserrat';
  font-weight: 400;
  font-style: normal;
  src: url("/static/fonts/MontserratAlternates-Medium.ttf");
}

@font-face {
  font-family: 'MontserratBold';
  src: url("/static/fonts/MontserratAlternates-ExtraBold.ttf");
}

@font-face {
  font-family: 'OpenSansRegular';
  src: url("/static/fonts/OpenSans/OpenSans-Regular.ttf");
}

html {
  height: 100%;
  overflow: hidden;
}

* {
  font-family: 'OpenSansRegular', Roboto, Arial, sans-serif;
}


body {
  height: 100%;
  overflow: auto;
  color: #3a4247;
  background: white;
  font-size: 16px;
  line-height: 1.6;
}

@media (min-width: 768px) {
  body {
    font-size: 17px;
  }
}

@media (min-width: 1024px) {
  body {
    font-size: 18px;
  }
}

::selection {
  background-color: #f6af43;
  color: rgba(16, 7, 8);
}