body {
  background-color: #000000;
  color: #FFFFFF;
  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;
  background: linear-gradient(to right, #6666ff, #0099ff , #00ff00, #ff3399, #6666ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: rainbow_animation 6s ease-in-out infinite;
  background-size: 400% 100%;
}

@keyframes rainbow_animation {
    0%,100% {
        background-position: 0 0;
    }

    50% {
        background-position: 100% 0;
    }
}

.no-margin {
  margin: 0px;
}

.spacer {
  flex: 1;
}

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