/* From Uiverse.io by elijahwgummer-poc */ 
.card {
    width: 300px;
    height: 400px;
  background:rgb(77, 74, 74);
    border-radius: 10px;
    
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease;
  }
  
  .card:before {
    content: "";
    position: absolute;
    top: -100%;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom right, #c9d60e, #efe705);
    transform: rotate(-45deg);
    transition: all 0.3s ease;
    z-index: -1;
  }
  
  .card:hover {
    transform: scale(1.05);
 
  }
  
  .card:hover:before {
    top: 0;
    left: 0;
  }
  
  .card-content {
    padding: 20px;
    text-align: center;
  }
  
  .card-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
     color: #eff2f3;
  }
  
  .card-description {
    font-size: 16px;
    color: #eff2f3;
    margin-bottom: 20px;
  }
  
  .card-button {
    padding: 10px 20px;
    background-color:  #c9d60e;
    color: #FFF;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .card-button:hover {
    background-color:  #c9d60e;
  }  
/* From Uiverse.io by ilkhoeri */ 
.card {
  --border: 4px;
  --rounded: 16px;
  --quantity: 12;
  --w-card: 450px;
  --h-card: 400px;
  margin: 0;
  width: var(--w-card);
  height: var(--h-card);
  max-width: 80%;
  max-height: 80%;
  border-radius: var(--rounded);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: var(--border);
  /* box-shadow: 0px 0px 16px 0px #cfecff; */
}
.card::before,
.card::after {
  content: "";
  z-index: -1;
  position: absolute;
  will-change: auto;
  --size: calc(100%);
  --size-old: calc(100% - calc(var(--border) * 2));
  width: var(--size);
  height: var(--size);
  min-width: var(--size);
  min-height: var(--size);
  max-width: var(--size);
  max-height: var(--size);
  border-radius: var(--rounded);
  background-size: 400% 400%;
  animation: bg-spin 3s linear 0s infinite normal none running;
  background-image: radial-gradient(
      circle farthest-side at 0 100%,
      #c9d60e,
      transparent
    ),
    radial-gradient(circle farthest-side at 100% 0, #c9d60e, transparent),
    radial-gradient(circle farthest-side at 100% 100%, #c9d60e, transparent),
    radial-gradient(circle farthest-side at 0 0, #c9d60e, #c9d60e);
}

.card::after {
  transition-property: color, background-color, border-color,
    text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter,
    backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 0.5s;
  animation-delay: 0.5s;
  filter: blur(24px);
  opacity: 0.7;
}
@keyframes bg-spin {
  25% {
    background-position: right 20% bottom 40%;
  }
  75% {
    background-position: left 45% top 20%;
  }
}



