body {
}

.css-selector {
  background: linear-gradient(270deg, #edc4dd, #f993c4, #d36bc6, #f993c4);
  background-size: 800% 800%;
  -webkit-animation: AnimationName 30s ease infinite;
  -moz-animation: AnimationName 30s ease infinite;
  animation: AnimationName 30s ease infinite;
}

@keyframes AnimationName {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.verified-badge {
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-right: 5px;
}

.verified-badge svg {
  width: 100%;
  height: 100%;
}

a {
  text-decoration: none;
}

