:root {
  /* Color */
  --clr-primary: #fff;

  --clr-secondary: #e30613;

  --clr-gray: #b6b7b8;
  --clr-gray-100: #777;
  --clr-white: #ffffff;
  --clr-black: #182027;
}

/* Texts and backgrounds classes */

.text-primary {
  color: var(--clr-primary) !important;
}
.bg-primary {
  background-color: var(--clr-primary) !important;
}
.text-secondary {
  color: var(--clr-secondary) !important;
}
.text-gray {
  color: var(--clr-gray) !important;
}
.text-gray-100 {
  color: var(--clr-gray-100) !important;
}

.bg-secondary {
  background-color: var(--clr-secondary) !important;
}
.text-neutral100 {
  color: var(--clr-neutral100) !important;
}
.bg-neutral100 {
  background-color: var(--clr-neutral100) !important;
}
.text-neutral200 {
  color: var(--clr-neutral200) !important;
}
.bg-neutral200 {
  background-color: var(--clr-neutral200) !important;
}
.text-white {
  color: var(--clr-white) !important;
}
.bg-white {
  background-color: var(--clr-white) !important;
}
.bg-grad {
  background-image: var(--grad-primary) !important;
}
.text-black {
  color: var(--clr-black) !important;
}
.bg-black {
  background-color: var(--clr-black) !important;
}
