body {
  background-color: #000000;
  color: #54FF55;
  font-family: arial;
  font-style: normal;
  font-size: 12px;
  margin: 0;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
div {
  font-weight: bold;
  font-size: 200px;
  text-shadow: 2px 2px 2px #804444;
}

.logo {
  min-width: 468px;
  max-width: 769px;
  text-align: justify;
  text-decoration: none;
  text-justify: distribute;
  position: relative;
  margin-top: 50px;
  margin-left: 100px;
  margin-right: 100px;
  overflow: hidden;
  word-break: break-all;
}

.logo::after {
  content: '_';
  animation: animate 1.5s linear infinite;
  position: relative;
  left: 630px;
  top: -250px;
}

@keyframes animate {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0.7;
  }
  100% {
    opacity: 0;
  }
}

.no-margin {
  margin: 0px;
}

.spacer {
  flex: 1;
}

footer {
  height: 50px;
  text-align: center;
  color: #000000;
}
