footer {
  display: flex;
    text-align: center;
     top: 95%;
    vertical-align: bottom;
  position: absolute;
  left: 50%;
  margin-left: -50px;
}

body {
  background: #0C0B09;
}

.CRT {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, #392912, #392912, #1f160a, #1f160a);
  color: #be9823;
  text-shadow: 0 0 10px #be9823;
  background-size: cover;
  background-size: 100% 2.5px;
  filter: blur(4.5px);
  border-radius: 5%/ 45%;
}

@media screen {
  .CRT {
    animation: scanlines infinite 55s linear;
  }
}
@keyframes scanlines {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 0 -10px;
  }
}