.boxCategory__title {
  font-size: 28px;
  color: white;
  font-weight: bold;
  margin-top: 30px;
  display: inline-block;
  background: linear-gradient(90deg, #00ffc8, #ffffff, #00ffc8);
  background-size: 200% auto;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  animation: shineText 3s linear infinite;
  opacity: 0;
  transform: translateX(-50px);
  animation: slideInTitle 2s ease forwards;
}

@keyframes slideInTitle {
  to {
    opacity: 1;
    transform: translateX(660px);
  }
}

@keyframes shineText {
  to {
    background-position: 200% center;
  }
}

.boxCategory__title h2 {
    font-size: 50px;

}

.boxCategory__List {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    flex-wrap: wrap;
}

.category__button {
  background: #00ffc8;
  color: black;
  border: none;
  padding: 8px 20px;
  border-radius: 10px;
  margin: 5px;
  cursor: pointer;
  font-size:large;
  transition: all 0.3s ease;
}
.category__button:hover {
  background: #00d5b8;
  transform: scale(1.05);
  box-shadow: 0 0 10px #00ffc8;
}
.category__button:active {
  background: #ff4081;
  color: white;
}


.titleCategory {
    background-color: #1f1f1f;
    color: aliceblue;
    margin-top: 40px;
    padding: 5px;
    display: flex;
    border: none;
    border-left: 5px solid aqua;
    border-radius: 5px;
}

.Story-card {
  position: relative;
  overflow: hidden;
}

.Story-card::after {
  content: "";
  position: absolute;
  top: -100%;
  left: -100%;
  width: 200%;
  height: 200%;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.2), transparent 70%);
  transform: rotate(25deg);
  animation: shine 2s infinite;
}

@keyframes shine {
  0% {
    transform: translate(-100%, -100%) rotate(25deg);
  }
  100% {
    transform: translate(100%, 100%) rotate(25deg);
  }
}
