/* Reset */
html {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

body,
div,
section,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ol,
ul {
  margin: 0;
  padding: 0;
}

ol,
ul {
  list-style: none;
}

img {
  height: auto;
  width: 100%;
}

/* End Reset */

html {
  font-size: 1.2rem;
  font-family: "Roboto", sans-serif;
  line-height: 1.5;
  width: 100vw;
  height: 100vh;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Roboto-condensed", sans-serif !important;
}

@media screen and (max-width: 550px) {
  html {
    width: 100vw;
    overflow-x: hidden;
  }

  body::-webkit-scrollbar {
    width: 0px;
    background: transparent;
  }

  /* Hide scrollbar for IE, Edge and Firefox */
  body {
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
    overflow-y: scroll;
  }
}
