/* 
--- 01 TYPOGRAPHY SYSTEM
-FONT SIZE SYSTEM (px)
10 / 12 / 14 / 16 / 18 / 20 / 24 / 30 / 36 / 44 / 52 / 62 / 74 / 86 / 98

-SPACING SYSTEM (px)
2 / 4 / 8 / 12 / 16 / 24 / 32 / 48 / 64 / 80 / 96 / 128

*/

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  overflow-x: hidden;
}

body {
  font-family: "Roboto", sans-serif;
  line-height: 1;
  font-weight: 400;
  color: #0b1028;
  overflow-x: hidden;
}

.container {
  max-width: 120rem;
  padding: 0 4.8rem;
  margin: 0 auto;
}

.h1-heading {
  font-size: 8.6rem;
  line-height: 1.1;
  letter-spacing: 0.8px;
  color: #f3f0ff;
  padding-bottom: 2.4rem;
  font-weight: 700;
}

.h2-heading {
  font-size: 5.2rem;
  /* text-align: center; */
  font-weight: 500;
  margin-bottom: 4.8rem;
  color: #364fc7;
}

.h3-heading {
  display: block;
  font-size: 1.8rem;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
  font-weight: 500;
  color: #d6336c;
}

.icon-link {
  font-size: 3.2rem;
  color: #364fc7;
  transition: all 0.3s;
}

.icon-link:hover {
  color: #2b3f9f;
  transform: scale(1.05);
}

.icon {
  font-size: 5.2rem;
  color: #364fc7;
  transition: all 0.3s;
}
