html,
body {
  font-family: "Nunito", sans-serif;
  background: #000000;
  padding: 0;
  margin: 0;
  overflow: hidden;
}
.heading {
  width: auto;
  height: auto;
  margin: auto;
  position: absolute;
  left: 0px;
  right: 0px;
  top: 0px;
  box-shadow: 0px 9px 36px 5px #000000;
  background: linear-gradient(-45deg, #e5190a, #ed1b79, #c623d5, #2341d5);
  background-size: 400% 400%;
  animation: gradient 15s ease infinite;
}

@keyframes gradient {
  0% {
      background-position: 0% 50%;
  }
  50% {
      background-position: 100% 50%;
  }
  100% {
      background-position: 0% 50%;
  }
}
.title {
  text-align: center;
  font-size: 80px;
  font-family: "Courier New", Courier, monospace;
  font-weight: normal;
  color: rgba(255, 255, 255, 0.792)
}
.logo {
  margin: 0 auto;
  width: 100px;
  height: 100px;
  border-radius: 100%;
  position: relative;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
