/* Welcome to Frogemusic's enchanting stylesheet!
 * Let's bring some life and rhythm with froges!
 */

body {
    background-color: #e0ffe0;
    font-family: "Comic Sans MS", cursive, sans-serif;
    color: #333;
    margin: 0;
    padding: 0;
    text-align: center;
}

h1 {
    color: #4CAF50;
    padding: 20px;
    font-size: 3em;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: #006400;
    transition: color 0.2s ease-in;
}

a:hover {
    color: #228B22;
}

.froge {
    width: 150px;
    height: 150px;
    margin: 20px auto;
    background: url('/images/froge.svg') no-repeat center center;
    background-size: contain;
}

button.ribbit {
    background-color: #4CAF50;
    border: none;
    color: white;
    padding: 10px 24px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
    border-radius: 12px;
}

.rainbow {
    animation: rainbowTransition 5s infinite;
}

@keyframes rainbowTransition {
    0% { color: red; }
    20% { color: orange; }
    40% { color: yellow; }
    60% { color: green; }
    80% { color: blue; }
    100% { color: indigo; }
}

footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: #4CAF50;
    color: white;
    text-align: center;
    padding: 10px;
}

footer a {
    color: #fff;
}

footer a:hover {
    color: #ddd;
}