@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:wght@400;700&display=swap');
body {
  font-family: "IBM Plex Mono", monospace;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #191919;
}
.ticker {
  font-size: 72px;
  text-transform: uppercase;
  text-align: center;
  display: flex;
  position: relative;
}
.ticker:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  background: black;
  height: 2px;
}
.ticker span {
  background: black;
  width: 100px;
  height: 100px;
  margin-left: 1px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  color: white;
}