* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  background-color: black;
  cursor: none;
}

.container {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  width: 100vw;
  background-color: unset;
  overflow: hidden;
}

img {
  width: 70vmin;
  height: 70vmin;
  backface-visibility: hidden;
  will-change: transform;
  animation: rotate 2s linear infinite;
  background-color: unset;
  background-blend-mode: luminosity;
  
}

.imgbg{
  border-radius: 50%;
  background-color: unset;
  /* animation: neon2 1s ease-in-out infinite alternate; */
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

#neon {
  z-index: 10;
  font-size: 11vmin;
  color: #ffffff;
  background-color: unset;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  backface-visibility: hidden;
  will-change: text-shadow;
  animation: neon 1s ease-in-out infinite alternate;
  user-select: none;
}

@keyframes neon {
  from {
    text-shadow: 0 0 10px #ffffff, 0 0 20px #ffffff, 0 0 30px #ffffff,
      0 0 40px #ff00de, 0 0 70px #ff00de, 0 0 80px #ff00de, 0 0 100px #ff00de,
      0 0 150px #ff00de;
  }
  to {
    text-shadow: 0 0 20px #ffffff, 0 0 40px #ffffff, 0 0 60px #ffffff,
      0 0 80px #ff00de, 0 0 140px #ff00de, 0 0 160px #ff00de;
  }
}

@keyframes neon2 {
  from {
    box-shadow: 0 0 10px #ffffff, 0 0 20px #ffffff, 0 0 30px #ffffff,
      0 0 40px #ff00de, 0 0 70px #ff00de, 0 0 80px #ff00de, 0 0 100px #ff00de,
      0 0 150px #ff00de;
  }
  to {
    box-shadow: 0 0 20px #ffffff, 0 0 40px #ffffff, 0 0 60px #ffffff,
      0 0 80px #ff00de, 0 0 140px #ff00de, 0 0 160px #ff00de;
  }
}
