
.card-container{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 25px;
    padding-bottom:4rem;
}

.card{
    display: flex;
    flex-direction: column;
    width: 400px; /* */
    border-radius:1rem;
    box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    transition: transform 0.6s ease;
    animation: zoom 1s linear forwards;
}

.card:hover{
    transform: translateY(-20px);
}
.card .img-container{
  padding: 1rem;
}
.card img{
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius:1rem; /* */
}
.card-content{
    height: 100%;
    display: flex; /* */
    flex-direction: column;
    justify-content: space-between;
    padding: 20px; 
}
 
.card-content h1{
    font-size: 24px;
    margin-bottom: 10px;
}

.card-content p{
    font-size: 0.8rem;
    color: rgb(12, 11, 11);
    margin-bottom: 20px;
}

.card-button{
  text-align: center;
  display: inline-block;
  background-color: var(--dark-blue);
  color: white;
  text-decoration: none;
  width:150px;  /* */
  border-radius: 5px;
  padding: 8px 16px;
}

@keyframes zoom {
  0% {
    transform: scale(0);
  }
  50% {
    transform: scale(0.5);
  }
  100%{
    transform: scale(1);
  }
}
.footerBottom{
    background-color: #b5e2e2;
    padding: 20px;
    text-align: center;
  }

.footerBottom p{
  color: rgb(15, 15, 15);
}
