body {
  background-color: #f8f9fa;
}

.hid {
  animation: fadeIn 1s ease-in-out;
}

.animated-text {
  font-size: 2rem;
  font-weight: bold;
  color: #007bff;
  animation: fadeInUp 1s ease-in-out;
}

.card {
  background: white;
  border-radius: 10px;
}

.list-group-item {
  border-left: 5px solid #007bff;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeInUp {
  from {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.red {
  color: #f20303;
}
.container {
  text-align: center;
}

.highlight {
  font-size: 30px;
  font-weight: bold;
  color: #8e44ad;
  /* අකර්ශනිය පාට */
  display: inline-block;
  text-transform: uppercase;
  position: relative;
  padding: 10px 20px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  /* හෝවී ශාඩෝ */
  animation: pulseAnimation 1.5s infinite ease-in-out;
}

@keyframes pulseAnimation {
  0% {
    transform: scale(1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    color: #8e44ad;
    /* Initial color */
  }
  50% {
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
    color: #3498db;
    /* Change to blue */
  }
  100% {
    transform: scale(1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    color: #8e44ad;
    /* Back to initial color */
  }
}