@charset "utf-8";
/* CSS Document by @mekamran @akidcalledbtc */
html, body { margin: 0px; height: 100%; position: relative; display: flex; justify-content: center; align-items: center; } canvas { position: absolute; } img { display: none; } body {
  background: linear-gradient(-45deg, #e73c7e, #E91F4D, #23a6d5, #DBB80A, #23d5ab );
  background-size: 400% 400%;
  animation: gradient 15s ease infinite;
  height: 100vh;
}

@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}