.hidden
{
    opacity: 0;
    visibility: hidden;
}
.shineEffect
{
    animation: shineEffect 7s infinite;
}
@keyframes shineEffect {
    0%, 15% {
        text-shadow: none;
    }
    25% {
        text-shadow: 0 0 15px rgba(255, 255, 255, 0.8);
    }
    35%, 100% {
        text-shadow: none;
    }
}
.bounce
{
    animation: bounce 2s infinite;
}
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

.lower {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
    text-align: center;
    color: #f3f3f3; /* Using a light color to show up against the dark background */
    filter: drop-shadow(0 2px 2px rgba(0,0,0,0.5)); /* Add shadow for better visibility */
}

.lower p {
    font-family: "Noto Sans TC";
    font-size: 0.8em;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.lower ion-icon {
    font-size: 2em;
}
