body {
  margin: 0 auto;
  font-family: monospace;
background: linear-gradient(
  to bottom,
    #010500,
    #010500 50%,
    #010800 50%,
    #010800
);
  background-size: 100% 7px;
  color: green;
  font-size: 20px;
  text-align: center;
  margin-top: 100px;
  text-shadow: 0px 2px 2px black;
}
.flick {
  opacity: 0;
  animation: flick 1s linear infinite;
}
@keyframes flick {
  0%{opacity: 0;}
  49.9%{opacity: 0;}
  50%{opacity: 1;}
  100%{opacity: 1;}
}
.title {
  font-size: 50px;
  color: green;
  text-shadow: 0px 0px 5px green;
  font-weight: 700;
  margin-bottom: 10px;
}
.footer {
  text-shadow: 0px 0px 1px green;
  width: 100%;
  height: 40px;
  line-height: 40px;
  background: #010800;
  position: absolute;
  bottom: 0;
  color: green;
}