.projetdev-text {
    position: relative;
  }
  
  .projetdev-hover-text {
    display: none;
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 20px;
    border-radius: 2px;
  }
  
  .projetdev-text:hover .projetdev-hover-text {
    display: block;
  }
  
  .projetdev-links a {
    display: inline-block;
    margin-top: 10px;
  }
  
  .projetdev-links img {
    transition: transform 0.3s;
  }
  
  .projetdev-links img:hover {
    transform: scale(1.2);
  }
  