.grid_for_pageLinks {
  display: grid;
  grid-template-columns: auto;
  padding: 20px;
  text-align: left;

}
.headerFeatures {
  text-align:center;
  font-size:30px;
  color:blue;
}

.column1 {
  grid-column: 1;
  font-size: 25px;
}

/***  need a little more line height for the spacing of the hand */
div.column1 {
  line-height: 3.0;
}

.btnStyleA {
        min-width: 100px;
        height: 40px;
        background-color: #ff8533;
        color:white;
        border-color:#ff0000;
        border-radius: 8px;
        box-shadow: 0 12px 16px 0 rgba(0,0,0,0.24), 0 17px 50px 0 rgba(0,0,0,0.19);
}

.btnStyleA:hover {
   background-color: #ffc180;
   color: black;
}

.button-hand button:before, .button-hand button:after {
  position: absolute;
}


 .button-hand button:hover {
    background-color: #ffc180;
    color: black;
 }

.button-hand button {
  color: black;
  border: 3px solid black;
  border-radius: 50px;
  padding: 0.8rem 2rem;
  font: 24px sans-serif;
  outline: none;
  cursor: pointer;
  position: relative;
  transition: 0.2s ease-in-out;
  letter-spacing: 2px;
}


.button-hand button:before {

  content: "👇";
  font-size: 60px;
  transform: scaleX(-1);
  right: 0px;
  top: -68px;
  animation: hand-up-down 1s infinite;
}
@keyframes hand-up-down {
  50% {
    margin-top: -20px;
  }
}


