.content {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: calc(100vh - 64px);
  flex-direction: column;
  margin-top: -64px;
}

.content p {
  color: #fff;
  font-size: 24px;
  font-family: 'B612-Regular';
  margin: 8px 0;
}

.content .title {
  font-size: 64px;
  color: #f1f1f1;
}

.content .subtitle {
  color: #ccc;
  font-size: 16px;
}

@keyframes blink {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

.content .subtitle-text::after {
  content: '';
  display: inline-block;
  width: 0.6em;
  height: 3px;
  margin-bottom: 0.3em;
  vertical-align: bottom;
  background: #fff;
  margin-left: 4px;
  animation: blink 1s infinite;
  margin-right: 4px;
}