@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, #000000, #5b5b5b, #000000, #5b5b5b);
  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%;
  }
}