body {
  padding: 0;
  margin: 0;
  border: 0;
  background-color: black;
  color: white;
}

.main {
  font-size: 44px;
  padding: 10px 0 0 10px;
}

.inline-block {
  display: inline-block;
}

.text-container {
  margin: 95px auto 0 auto;
  position: relative;
  box-sizing: border-box;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: clip;
  user-select: none;
  width: 475px;
  height: 76px;
  background-color: rgba(155, 227, 63, 0.3);
  animation: background-color-change 1s infinite;
  animation-timing-function: ease-in-out;
}
.text-container .text {
  font-size: 0;
  letter-spacing: 1px;
  margin: 14.2px 0 14.2px 0;
  color: yellow;
  font-family: "DINEngschrift";
  position: relative;
}
.text-container .text > span {
  font-size: 44px;
}
.text-container .text .separator {
  position: relative;
  padding-left: 60px;
  padding-right: 60px;
}
.text-container .corner .left-top {
  position: absolute;
  top: 0;
  left: 0;
}
.text-container .corner .left-top > div {
  background-color: yellow;
}
.text-container .corner .left-top #left-top-1 {
  width: 15px;
  height: 3px;
}
.text-container .corner .left-top #left-top-2 {
  width: 3px;
  height: 12px;
}
.text-container .corner .right-top {
  position: absolute;
  top: 0;
  right: 0;
}
.text-container .corner .right-top > div {
  background-color: yellow;
}
.text-container .corner .right-top #right-top-1 {
  width: 15px;
  height: 3px;
}
.text-container .corner .right-top #right-top-2 {
  margin-left: 12px;
  width: 3px;
  height: 12px;
}
.text-container .corner .left-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
}
.text-container .corner .left-bottom > div {
  background-color: yellow;
}
.text-container .corner .left-bottom #left-bottom-1 {
  width: 3px;
  height: 12px;
}
.text-container .corner .left-bottom #left-bottom-2 {
  width: 15px;
  height: 3px;
}
.text-container .corner .right-bottom {
  position: absolute;
  bottom: 0;
  right: 0;
}
.text-container .corner .right-bottom > div {
  background-color: yellow;
}
.text-container .corner .right-bottom #right-bottom-1 {
  margin-left: 12px;
  width: 3px;
  height: 12px;
}
.text-container .corner .right-bottom #right-bottom-2 {
  width: 15px;
  height: 3px;
}

@keyframes background-color-change {
  0% {
    background-color: rgba(155, 227, 63, 0.3);
  }
  50% {
    background-color: rgba(0, 0, 0, 0);
  }
  100% {
    background-color: rgba(155, 227, 63, 0.3);
  }
}

/*# sourceMappingURL=index.css.map */
