span.lp_emoji {
  font-size: 1.2em;
}

div.hero_section {
  background: #f9f9f9;
  padding: 1em;
  border-radius: 5px;
  margin-bottom: 1em;
}


div.hero_text {
    text-align: center;
    margin-bottom: 1em;
    margin-left: 1em;
    max-width: 75%;
}

div.hero_img {
    max-width: 20%;
    min-width: 40px;
    float:right;
}


.shiny-button {
    padding: 10px 20px;
    font-size: 16px;
    color: #fff;
    background-image: linear-gradient(to right, #ff7e00, #ffbb00); /* Orange gradient shades */
    border: none;
    border-radius: 5px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    outline: none;
    transition: transform 0.3s ease;
}

.shiny-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(to right, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.1));
    border-radius: 5px;
    transition: opacity 0.3s ease;
    opacity: 0;
}

.shiny-button:hover::before {
    opacity: 1;
    animation: shine 1.5s ease infinite;
}

.shiny-button:active {
    transform: scale(0.98);
}

@keyframes shine {
    0% { transform: translateX(-100%); }
    50% { transform: translateX(100%); }
    100% { transform: translateX(100%); }
}