@charset "utf-8";
/* CSS Document */
/* Modern Shining Blink Effect */
#blink-1, #blink-2, #blink-3 {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
}

#blink-1:hover, #blink-3:hover {
    color: #ffffff !important;
    transform: translateY(-5px) scale(1.1);
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.8));
    text-shadow: 0 0 1px #fff;
}
 #blink-2:hover {
    color:#0EB493 !important;
    transform: translateY(-5px) scale(1.1);
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.8));
    text-shadow: 0 0 1px #fff;
}