h1{
    text-shadow: 2px 4px 6px rgb(0, 0, 0, 0.25);
    text-align: center;
}

p{
  text-align: center;
}

.button-border {
    border-bottom: 0.1px solid #eeeeee; 
    border-left: 0.1px solid #ececec;
    border-right: 0.1px solid #ececec;
    border-top: 0.1px solid #eaeaea;
    width: 100%; /* Responsive width */
    max-width: 300px; /* Maximum width */
    height: 400px; /* Fixed height */
    padding: 2.5%;
    box-sizing: border-box;
    display: inline-block;
    text-align: center;
    overflow: hidden;
    border-radius: 1.5vh; 
    background-color: #fff; 
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); 
    transition: all 0.3s ease;
    margin-bottom: 5%;
  }

  .button-border:hover {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.25); 
    transform: translateY(-5px); 
  }

  .button-border img {
    max-width: 100%;
    max-height: calc(100% - 40px); /* Adjust image size to the rest of the space */
    height: auto;
    display: block;
    margin-left: auto;
    margin-right: auto;
  }

  .button-border h4 {
    margin-top: 10px;
    margin-bottom: 0;
    height: 30px; /* Fixed height for h4 */
    overflow: hidden;
  }