.segment {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 10px;
  align-items: center;

  margin-top: 2em;
  margin-bottom: 2em;
}

.sides {
  padding-left: 10%;
  padding-right: 10%;
}

.middle {
  font-size: 2.5em;
  font-weight: bold;
}

.segmentline {
  color: #b0b0b0;
  background-color: #b0b0b0;
  height: 2px;
  border-radius: 1px;
  margin: 0px;
}

@keyframes wobble {
  33% {
    transform: rotate(5deg);
  }
  66% {
    transform: rotate(-5deg);
  }
}

.brokentv {
  animation:wobble 5s ease-in-out infinite alternate;

  margin: 0px;
}