.author-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  padding: 40px 20px;
  background-color: #fff3f8;
}

.author-card {
  background-color: #ffeedd;
  border-radius: 25px;
  padding: 25px;
  width: 260px;
  text-align: center;
  box-shadow: 2px 4px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}
.author-card:hover {
  transform: scale(1.05);
}

.author-card img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
  border: 4px solid #ffcccc;
}

.author-card h3 {
  font-size: 22px;
  margin: 10px 0 5px;
  color: #cc3366;
}















.author-card a {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 20px;
  background-color: #ff6699;
  color: white;
  border-radius: 10px;
  text-decoration: none;
  font-size: 16px;
  transition: background-color 0.3s ease;
}
.author-card a:hover {
  background-color: #cc3366;
}

.author-card p {
  font-size: 16px;
  color: #444;
}




this is for the text to link 

<style>
.text-link {
  background: none;
  border: none;
  padding: 0;
  color: inherit;
  font: inherit;
  text-decoration: underline; /* or none if you want */
  cursor: pointer;
}

.text-link:hover {
  color: #00796b; /* optional: changes color on hover */
}
</style>











@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

.hero-banner {
  animation: fadeInUp 1.2s ease-out forwards;
}

.hero-banner a {
  animation: pulse 2s infinite;
  transition: transform 0.3s ease;
}







.hero-banner {
  background-image: url('herobanner.png');
  background-size: cover;
  background-position: center;
  text-align: center;
  padding: 120px 20px;
  min-height: 325px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  animation: fadeInUp 1.2s ease-out forwards;
}

.hero-banner a {
  animation: pulse 2s infinite;
}







<style>
  .policy-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 40px auto;
    animation: fadeIn 1.2s ease-out;
  }

  .policy-image-wrapper img {
    width: 100%;
    display: block;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  }

  .policy-link {
    position: absolute;
    display: block;
    width: 42%; /* Adjust width if needed */
    height: 11%; /* Adjust height if needed */
    left: 54%;  /* Adjust for each hotspot */
    transform: translateX(-50%);
  }

  /* Hotspot positions for each policy button (Y-axis by top %) */
  .privacy   { top: 6%; }
  .refund    { top: 20%; }
  .shipping  { top: 35%; }
  .parent    { top: 50%; }
  .fun       { top: 65%; }

  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(40px); }
    to   { opacity: 1; transform: translateY(0); }
  }
</style>

<div class="policy-image-wrapper">
  <img src="policies.jpg" alt="Policy Links" />

  <a href="https://whizkidzpress.neocities.org/privacy-policy" class="policy-link privacy" target="_blank"></a>
  <a href="https://whizkidzpress.neocities.org/refund-policies" class="policy-link refund" target="_blank"></a>
  <a href="https://whizkidzpress.neocities.org/shipping-policy" class="policy-link shipping" target="_blank"></a>
  <a href="https://whizkidzpress.neocities.org/parent-policy" class="policy-link parent" target="_blank"></a>
  <a href="https://whizkidzpress.neocities.org/policy-fun" class="policy-link fun" target="_blank"></a>
</div>








