/* --------------------------- GENERAL STYLE ---------------------------- */

html,
body {
  width: 100%;
  height: 100%;
  margin: 0px;
  padding: 0px;
  overflow-x: hidden;
  font-family: 'clear_sans_lightregular', sans-serif;
  color: #333;

  --sy-grid-size: 40px;
}

/* maybe this is bad for performance, so consider refactoring... */
/* but it makes sizing much easier */
* {
  box-sizing: border-box;
}

/* reset heading styles */
h1,
h2,
h3 {
  font-size: 1em;
  margin: 0;
  padding: 0;
  font-weight: inherit;
}

/* reset p styles */
p {
  margin: 0;
  padding: 0;
}

[hidden] {
  display: none !important;
}

.material-symbols-outlined {
  user-select: none;
  -webkit-user-select: none;
  pointer-events: none;
}

/* Templates are hidden so you can use <template class="content-classs">
   without the template showing due to .content-class */
template {
  display: none !important;
}