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

html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
}

body {
  font-family: var(--font, sans-serif);
  background: var(--bg, #F5F5F5);
  color: var(--text-main, #333);
  overflow: hidden; /* App-like feel */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

button, input, select, textarea {
  font-family: inherit;
  box-sizing: border-box;
}