.slash {
  display: flex;
  justify-content: left;
  align-items: center;
  position: relative;
  font-size:150%;
  font-weight:bold;
  align-items: end;
  margin-bottom: 1em;
}
 
.slash::before,
.slash::after {
  content: "";
  width: 30px;
  height: 2px;
  background-color: orange;
  margin: 6px 4px 4px;
  align-self: center;
}
.slash::before {
  transform: rotate(60deg);
}
.slash::after {
  transform: rotate(-60deg);
}

.version{
  font-size: 130%;
  background: linear-gradient(transparent 50%, pink 50%);
  margin-right: 0.25em;
}
