.container3 {
    flex: 0 0 auto;
    width: 70px;
    height: 150px;
    margin-top: 400px;
  }
  
  @media screen and (max-height: 255px) {
    .container3 {
      margin: 25px auto;
    }
  }
  
  .button-download {
    display: inline-block;
    padding: 12px 12px 10px;
    border: 0;
    border-radius: 3px;
    background-color: #101018;
    text-decoration: none;
    transition: all 0.8s ease-in-out;
  }
  
  .button-download i::after {
    content: none; /* Supprimez le contenu généré précédemment */
  }
  
  .button-download i.fas::after {
    content: "\f019"; /* Utilisez le code Unicode de Font Awesome */
    font-family: "Font Awesome 5 Free"; /* Spécifiez la police de Font Awesome */
    font-size: 40px;
    color: #fff;
  }
  
  .button-download:hover {
    animation: pulse 0.2s 2 both;
  }
  
  .button-download.loading i {
    animation: loading 1s infinite linear;
  }
  
  .button-download.loading i::after {
    content: "\f1ce";
  }
  
  .button-download.success {
    border-radius: 50%;
    background: #80bca3;
  }
  
  .button-download.success i::after {
    content: "\f00c";
    color: transparent;
    animation: change-icon 0.6s 0.6s linear both;
  }
  
  @keyframes loading {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(359deg);
    }
  }
  
  @keyframes change-icon {
    0% {
      color: transparent;
    }
    100% {
      color: #fff;
    }
  }
  
  @keyframes pulse {
    from {
      transform: scale3d(1, 1, 1);
    }
    50% {
      transform: scale3d(1.05, 1.05, 1.05);
    }
    to {
      transform: scale3d(1, 1, 1);
    }
  }
 
  .view-collection {
    flex: 0 0 auto;
    margin: 10px 0 0;
    color: #fff;
    text-align: center;
    font-size: 15px;
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
  }
  
  @media screen and (max-height: 255px) {
    .view-collection {
      margin: 25px auto;
    }
  }
  
  .view-collection span {
    font-size: 13px;
  }
  
  .view-collection .love {
    color: #cc0000;
  }
  
  .view-collection a {
    color: #bf4d28;
    text-decoration: none;
    transition: all 0.4s;
  }
  
  .view-collection a:hover, .view-collection a:focus {
    color: #80bca3;
  }
  