<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* From Uiverse.io by alexruix */ 
/* Card Container (to hold the cards side by side) */
.card-container {
    display: flex;
    flex-wrap: wrap; /* Allows the cards to wrap to the next line if there's not enough space */
    justify-content: center; /* Distribute the cards evenly with space between them */
    gap: 30px; /* Space between the cards */
    margin: 0 auto;
    max-width: 1200px; /* Maximum width of the container */
    padding: 20px; /* Optional, for padding around the container */
}

/* Card */
.card {
    width: 280px;
    height: 350px;
    position: relative;
    background: #f5f5f5;
    color: #252525;
    border-radius: 4px;
    overflow: hidden;
    line-height: 150%;
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
    transition: box-shadow .3s ease-in-out;
}  
  .card-info {
    position: absolute;
    bottom: 1em;
    width: 100%;
    text-align: center;
  }
  
  /* Image */
  .card-img {
    background: #00ff88;
    background: linear-gradient(to top, #00ff88, #61efff);
    height: 100%;
    width: 100%;
    position: absolute;
    transition: transform .3s ease-in-out;
    z-index: 2;
  }

  .card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures the image covers the container without distortion */
    object-position: center; /* Centers the image */
}
  
  /* Buttons */
  .social-media {
    position: absolute;
    bottom: 0;
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 0 1rem;
    transform: translateY(-6em);
    z-index: 3;
  }
  
  .social-media li {
    background: #f5f5f5;
    display: inline-flex;
    padding: 10px;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    transition: all .3s ease-in;
  }
  /* Icons */
  .social-media li svg {
    --size: 24px;
    width: var(--size);
    height: var(--size);
    fill: #252525;
  }
  
  /* Texts */
  .title {
    font-size: 1.5em;
    font-weight: bold;
    color: black;
  }
  
  .subtitle {
    letter-spacing: 1px;
    font-size: 0.9em;
    color: red;
  }
  
  
  /* Hovers */
  .card:hover {
    box-shadow: 0px 15px 30px rgba(80, 80, 80, 0.3);
  }
  
  .card:hover .card-img {
    transform: translateY(-10em);
  }
  
  .card:hover .social-media li {
    transform: translateY(-5%);
    opacity: 1;
  }
  
  .card:hover .social-media li:nth-child(1) {
    transition-delay: 0s;
  }
  
  .card:hover .social-media li:nth-child(2) {
    transition-delay: .1s;
  }
  
  .card:hover .social-media li:nth-child(3) {
    transition-delay: .2s;
  }</pre></body></html>