* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  height: 0;
}

body {
  font-family: var(--body-text);
  color: #fff;
  background-color: var(--color-content-bg);
}

h1, h2, h3 {
  font-family: var(--heading-text);
}

/*
  STYLES
*/
.flex {
  display: flex;
}

.justify-center {
  justify-content: center;
}

.items-center {
  align-items: center;
}


/*
  TEXT
*/
.text-xxl {
  font-size: var(--size-xxl);
}

.text-m {
  font-size: var(--size-m);
}

.text-center {
  text-align: center;
}
