/* ============================= */
/* RESET */
/* ============================= */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* ============================= */
/* ROOT */
/* ============================= */
html {
  font-size: 16px;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  background: #f5f6f8;
  color: #222;
  -webkit-font-smoothing: antialiased;
}

/* ============================= */
/* UTILS */
/* ============================= */
.hidden {
  display: none;
}