.skeleton {
  background-color: rgb(199, 199, 199);
  margin: 0.75rem 0;
  border-radius: 0.25rem;
}

.skeleton.title {
  height: 1.25rem;
  margin-bottom: 1rem;
}

.skeleton.text {
  height: 0.75rem;
}

.skeleton.width-100 {
  width: 100%;
}

.skeleton.width-50 {
  width: 50%;
}

.skeleton.profile-circle {
  width: 150px;
  height: 150px;
  border-radius: 50%;
}

.skeleton.banner {
  height: 470px;
}

/* animations */

@keyframes pulse {
  50% {
    opacity: 0.5;
  }
}
/* tailwind css class */
/* animate-pusle */

.animate-pusle {
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}
