.toothpick {
  display: flex;
  align-items: center;
  margin: 2em 0;
  height: 60px;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
}

.toothpick::before,
.toothpick::after {
  content: '';
  flex: 1;
  height: 100%;
  background-image: url('tri.svg');
  background-repeat: repeat-x;
}

.toothpick span {
  padding: 0 12px;
  font-size: 3rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #00ff41;
  text-shadow: 2px 2px 0 #000;
}

.toothpick.reverse::before,
.toothpick.reverse::after {
  background-image: url('tri-reverse.svg');
}
