.projects-article {
    position: relative;
    display: inline-block;
  }
  
  .projects-article-image {
    display: block;
    width: 400px;
    height: 300px;
    margin: 0 auto;
    transition: all 0.3s ease;
  }
  
  .projects-article-image:hover {
    transform: scale(2);
    z-index: 2;
  }
  
  .projects-article-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: all 0.3s ease;
    background-color: rgba(0, 0, 0, 0.8);
    color: #ffffff;
    text-align: center;
    padding: 20px;
    width: 90%;
    height: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: justify;
  }
  
  
  .projects-article-image:hover + .projects-article-text {
    opacity: 1;
    z-index: 3;
  }
  
  .projects-article-title {
    text-align: center;
  }
  
  @media screen and (max-width: 767px) {
    .projects-article-image {
      width: 100%;
      height: auto;
    }
  }
  