.button-container {
  display: flex;
  justify-content: center;
}

.button-container a {
  display: block;
  width: 90%;
  max-width: 500px;
}

.custom-button {
  width: 100%;
  height: 6rem;
  border: 2px solid transparent;
  border-radius: 9999px;
  font-family: sans-serif;
  font-size: 1.5rem;
  font-weight: bold;
  text-align: center;
  color: white;
  margin-top: 2.5rem;
  background-color: #001f49;

  transition: transform 0.5s, box-shadow 0.5s, border-color 0.5s;
}

.custom-button:hover {
  box-shadow: 0px 10px 45px #001f49;
  transform: scale(1.03);
}

/* .highlight {
  color: #36a8ec;
} */

/* Container styling */
.container {
  padding: 0 0.75rem; /* Equivalent to px-3 in Tailwind */
  position: relative;
  margin-top: 0.75rem; /* Equivalent to mt-3 in Tailwind */
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Image wrapper */
.image-wrapper {
  position: relative;
  width: 100%;
  max-width: 500px; /* Equivalent to lg:w-5/12 */
  transition: all 0.5s ease-in-out;
}

/* Image styling */
.hoverable-image {
  border-radius: 24px; /* Equivalent to rounded-3xl in Tailwind */
  transition: all 0.5s ease-in-out;
  width: 100%;
  display: block;
}

/* Text styling */
.hoverable-text {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  color: white;
  font-size: 1.25rem; /* Equivalent to text-xl */
  font-weight: 600; /* Equivalent to font-semibold */
  transition: all 0.5s ease-in-out;
  transform: scale(1);
}

/* Hover effects */
.image-wrapper:hover .hoverable-image {
  transform: scale(1.05);
  box-shadow: 0 15px 35px #001f49;
}
