.card-link {
  text-decoration: none;
}

.card-stack {
  position: relative;
  width: 200px;
  height: 280px;
  cursor: pointer;
}

.card {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  background: white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: sans-serif;
}

.card .above-text {
  font-size: 16px;
  margin-bottom: 4px;
}

.card .center-text {
  font-size: 28px;
  font-weight: bold;
  color: #0b0b4c;
}

.stack-two .card-left {
  transform: rotate(-4deg);
  z-index: 1;
}

.stack-two .card-right {
  transform: rotate(4deg);
  z-index: 2;
}

.stack-two .card-center {
  transform: rotate(0deg);
  z-index: 3;
}

.stack-two:hover .card-left {
  transform: rotate(-15deg) translateX(-25px);
}

.stack-two:hover .card-right {
  transform: rotate(15deg) translateX(25px);
}

.stack-two:hover .card-center {
  transform: rotate(0deg);
}
