

/* Wrap the entire card */
.project-card {
  position: relative;
  display: block;
  height: 280px;
  border-radius: 10px;
  text-decoration: none;
}

/* Background image */
.project-img {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.4s ease;
}

.card-title{
  display: none;
}

.card:hover{
      .card-title{
        display: block;
        position: absolute;
        z-index: 1;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        color: black;
        font-weight: bold;
      }
      .card-img-top{
        opacity: 0;
      }
}

.eachProject{
  margin: 3px 0px;
}

