/* Froge Stylesheet */
body {
    background-color: #e0ffe0; /* peaceful froge green */
    font-family: 'Comic Sans MS', cursive, sans-serif;
    color: #333;
    margin: 0;
    padding: 0;
}

header {
    background-color: #4CAF50; /* nice froge header */
    text-align: center;
    padding: 1rem;
    font-size: 2rem;
    color: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

a {
    color: #006400; /* lovely froge link */
    text-decoration: none;
    transition: color 0.3s ease-in-out;
}

a:hover {
    color: #00ff00;
}

button {
    background-color: #32CD32; /* vibrant froge button */
    border: none;
    color: white;
    padding: 0.75rem 1.5rem;
    text-align: center;
    text-decoration: none;
    font-size: 1rem;
    margin: 0.5rem 0;
    cursor: pointer;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.2);
}

button:hover {
    background-color: #45a049;
}

footer {
    background-color: #2E8B57; /* calming froge footer */
    text-align: center;
    padding: 1rem;
    font-size: 1rem;
    color: #fff;
    position: fixed;
    width: 100%;
    bottom: 0;
}