.container {
    position: relative;
    width: 100%;
    
  }
  
.adjustments{
  padding: 20px;
  margin-top: 120px; /* Adjust this value based on the header's height */
}

  .image {
    opacity: 1;
    display: block;
    transition: .5s ease;
    backface-visibility: hidden;
  }
  
  .middle {
    transition: .5s ease;
    opacity: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    text-align: center;
  }
  
  .container:hover .image {
    opacity: 0.3;
  }
  
  .container:hover .middle {
    opacity: 1;
  }
  
  .text {
    font-family: 'poppins' ,sans-serif;
    color: rgb(34, 33, 33);
    font-size: 16px;
    padding: 16px 32px;
  }
