html,
body {
  margin: 0;
  padding: 0;
  font-family: "Consolas";
  background: none;
  text-align: CENTER, CENTER;
  font-size: 25px;
}

canvas {
  display: block;
}

.middle {
  position: absolute;
  top: 50px;
  left: 70px;
}

.text {
  color: #fff;
  text-transform: UPPERCASE;
  font-size: 60px;
  text-align: CENTER;
}

.text::before,
.text::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.text::before {
  color: #F51720;
  animation: glitch-effect 3s infinite;
}

.text::after {
  color: #F8D210;
  animation: glitch-effect 2s infinite;
}

@keyframes glitch-effect {
  0% {
    left: 2px;
    top: -1px;
  }

  25% {
    left: 2px;
    top: 0px;
  }

  50% {
    left: -1px;
    top: 2px;
  }

  75% {
    left: 1px;
    top: -1px;
  }

  100% {
    left: 0px;
    top: -2px;
  }
}

.box {
  width: 420px;
  height: 370px;
  padding: 40px;
  position: absolute;
  top: 22px;
  left: 0px;
  background: #192a56;
  text-align: CENTER;
  z-index: 1;
}

.box h1 {
  color: #dcdde1;
  text-transform: UPPERCASE;
}

.box input[type="button"] {
  border: none;
  margin: 10px;
  padding: 24px;
  width: 180px;
  height: 60px;
  font-family: Courier;
  text-transform: UPPERCASE;
  text-align: CENTER, CENTER;
  border-radius: 5px;
  cursor: pointer;
  color: #000;
  background-size: 200%;
  background-image: linear-gradient(to left, #ff0000, #993333, #ff0000);
  transition: 0.5s;
  color: white;
}

.box input[type="button"]:hover {
  background-image: linear-gradient(to left, #993333, #ff0000, #993333);
  width: 210px;
}

#sub {
  text-align: CENTER;
  width: 275px;
}

#sub:hover {
  background-image: linear-gradient(to left, #993333, #ff0000, #993333);
  width: 300px;
}

#btm {
  position: relative;
  top: 450px;
  left: 463px;
  background: none;
  display: block;
  border: 2px solid black;
  padding: 1px 0px;
  text-align: CENTER;
  outline: none;
  color: black;
  border-radius: 3px;
  transition: 0.45s;
  cursor: pointer;
}