body {
    background-color: #000000;
    color: #32CD32;
    font-family: 'Comic Sans MS', cursive, sans-serif;
}

a {
    color: #FFD700;
    text-decoration: underline;
}

.froge-hover:hover {
    color: #FF69B4;
    transition: color 0.3s ease-in-out;
}

button, .button {
    background-color: #32CD32;
    border: none;
    color: white;
    padding: 12px 24px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    transition-duration: 0.4s;
    cursor: pointer;
}

button:hover, .button:hover {
    background-color: white;
    color: #32CD32;
    border: 2px solid #32CD32;
}

.glow {
    text-shadow: 0 0 5px #FFD700, 0 0 10px #FFD700, 0 0 15px #FFD700;
}

@keyframes frogeDance {
    0% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0); }
}

.froge-animation {
    display: inline-block;
    animation: frogeDance 1s infinite ease-in-out;
}

.icon {
    width: 24px;
    height: 24px;
    vertical-align: middle;
}