 /* Container for the image */
 .image-container {
    position: relative;
    margin: 5px;
    background-repeat: no-repeat;
    display: inline-block;
  }

  /* The image */
  .image-container .img-hero {
    width: 100%; /* Adjust the size as needed */
    height: 100vh;
    object-fit: cover;
    
  }
 /* .image-container .img-hero:hover{
    transform: scale(
      1.05
    ); 
 } */
  /* Overlay for text and button */
  .overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-align: center;
  }

  /* Styling for the text */
  .overlay h2 {
    font-size: 50px;
    margin: 10px;
  }
  .overlay p{
    font-size: 20px;
    margin: 10px;
  }

  /* Styling for the button */
  .overlay button {
    padding: 10px 20px;
    font-size: 20px;
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.15);
    color: white;
    border: 2px transparent solid;
    backdrop-filter:blur(5px);
    -webkit-backdrop-filter: blur(10px);
    cursor: pointer;
  }

  .overlay button:hover {
    padding: 10px 20px;

    border: 2px rgb(255, 255, 255) solid;
    background-color: rgba(255, 255, 255, 0.15);
  }