.custom-box {
    height: 100%; /* Adjust the height as needed */
    padding: 20px; /* Adjust padding inside the box */
    margin-bottom: 20px; /* Adjust margin between boxes */
    background-color: #f8f9fa; /* Background color */
    border: 1px solid #dee2e6; /* Border color */
    border-radius: 5px; /* Border radius */
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center; /* Center align content */
  }

  /* Responsive adjustments */
  @media (max-width: 768px) {
    .custom-box {
      padding: 10px;
    }
  }