:root {
  --main: #c40213;
  --bg: #eee;
}
.fill-main {
  fill: var(--main);
}
.bg-main {
  background-color: var(--main);
}
.text-main {
  color: var(--main);
}
.bg-sub {
  background-color: var(--bg);
}
.text-sub {
  color: var(--bg);
}
.bal {
  width: fit-content;
  position: relative;
}
.bal:before {
  content: "";
  width: 1px;
  height: 30px;
  background-color: black;
  position: absolute;
  left: -20px;
  top: 0;
  transform: rotate(-24deg);
}
.bal:after {
  content: "";
  width: 1px;
  height: 30px;
  background-color: black;
  position: absolute;
  right: -20px;
  top: 0;
  transform: rotate(24deg);
}
