.card-container {
    display: flex;
    justify-content: center;
  }

  .card {
    position: relative;
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 8px;
    overflow: hidden;
    box-shadow:0 4px 8px rgba(0, 0, 0, 0.1);
    margin: 20px;
  }

  .card-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px 8px 0 0;
  }

  .card-content {
    padding: 15px;
    text-align: center;
  }


  .download-button span {
    display: inline-block;
    transition: opacity 0.3s;
    font-family:outfit;
  }

  .download-button.downloading span {
    opacity: 0;
  }

  .timer-container {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background-color: #eee;
    display: none;
  }



  @keyframes downloadAnimation {
    to {
      width: 100%;
    }
  }

  @media (max-width: 768px) {
    .card-container {
      flex-direction: column;
      align-items: center;
    }

    .card {
      margin: 10px 0;
    }
  }