.cover2 button {
    all: unset;
    cursor: pointer;
    padding: 0.5em;
    outline: 1px solid black;
    color: black;
  }
  
  .cover2 button:hover {
    all: unset;
    cursor: pointer;
    padding: 0.5em;
    color: white;
    background-color: black;
  }
  
  .container3 {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
  }
  
  .card2 img {
    width: 100%;
    max-width: 350px;
    height: 500px;
    object-fit: cover;
    backface-visibility: hidden;
  }
  
  /* Styling Cards */
  
  .card2 {
    width: 100%;
    max-width: 350px;
    height: 500px;
    background-color: transparent;
  }
  

  #card2 {
    perspective: 1000px;
  }
  .inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.25);
    transform-style: preserve-3d;
    transition: transform 0.75s;
  }
  .inner * {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
  }
  
  /* Card Covers */
  .cover2 {
    width: 100%;
    max-width: 550px;
    height: 500px;
    background-color: rgb(21, 230, 108);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: all 0.75s ease-in-out;
  }
  
  
  
  /* Card 2 - Flip 180 */
  .cover2 {
    position: relative;
    width: 100%;
    height: 100%;
    top: -101.4%;
    transform: rotateY(180deg);
  }
  .card2:hover .inner {
    transform: rotateY(180deg);
  }
  
  .cover2 h3 {
    max-width: 80%; /* Limit the maximum width of the text */
    margin: 8px auto; /* Adjust margin as needed */
    word-wrap: break-word;
    text-align: center;
    font-style: normal;
    font-weight: 700;
    line-height: 1.5em;
 
  }
  
  .cover2 h5 {
    color:rgb(124, 102, 102);
    margin: 15px;
    line-height: inherit;
  }
  