* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  /* font-size: 10px/16px = 0.625 */
  /*Percentage of user's browser font-size setting*/
  font-size: 62.5%;
  overflow-x: hidden;
  /* scroll-behavior: smooth; */
}
body {
  font-family: "Rubik", sans-serif;
  line-height: 1;
  font-weight: 400;
  color: #555;
  overflow-x: hidden;
}

.container {
  max-width: 120rem;
  margin: auto;
  padding: 0 3.2rem;
}

h1 {
  font-size: 30rem;
  margin-top: 20rem;
  text-align: center;
}
