.block {
  position: relative;
  width: 200px;
  margin: 20px;
  height: 200px;
  background: linear-gradient(0deg, #000, #272727);
}
.bds > img {
  width: 80%;
  height: 80%;
  margin-left: 10%;
}
.bds > p {
  text-align: center;
  margin-top: -30px;
  color: white;
}
.lassh {
  margin-top: 10vh;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.moving-glow::before,
.moving-glow:after {
  content: "";

  position: absolute;
  left: -2px;
  top: -2px;
  background: linear-gradient(
    45deg,
    #fb0094,
    #0000ff,
    #00ff00,
    #ffff00,
    #ff0000,
    #fb0094,
    #0000ff,
    #00ff00,
    #ffff00,
    #ff0000
  );
  background-size: 400%;
  width: calc(100% + 5px);
  height: calc(100% + 5px);
  z-index: -1;
  animation: anim-moving-glow 20s linear infinite;
}

@keyframes anim-moving-glow {
  0% {
    background-position: 0 0;
  }
  50% {
    background-position: 400% 0;
  }
  100% {
    background-position: 0 0;
  }
}
.ptag {
  text-align: center;
  color: white;
  font-size: 20px;
  padding-top: 20px;
}
