:root {
  /* Color */
  --clr-primary: #e41c26;

  --clr-white: #ffffff;
  --clr-white-200: #bebebe;

  --clr-black: #111111;
  --clr-black-200: #161616;

  /* Gradients */
}

/* Texts and backgrounds classes */

.text-primary {
  color: var(--clr-primary) !important;
}
.bg-primary {
  background-color: var(--clr-primary) !important;
}
.text-white {
  color: var(--clr-white) !important;
}
.bg-white {
  background-color: var(--clr-white) !important;
}
.text-white-200 {
  color: var(--clr-white-200) !important;
}
.bg-white-200 {
  background-color: var(--clr-white-200) !important;
}
.text-black {
  color: var(--clr-black) !important;
}
.bg-black {
  background-color: var(--clr-black) !important;
}
.text-black-200 {
  color: var(--clr-black-200) !important;
}
.bg-black-200 {
  background-color: var(--clr-black-200) !important;
}
