/* Style for Froge AI - Making the Web a Hoppier Place! 🌿🐸 */

body {
    background-color: #e0f7fa;
    color: #004d40;
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
}

h1, h2, h3 {
    color: #00796b;
}

a {
    color: #004d40;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
    color: #00796b;
}

header {
    background-color: #004d40;
    color: white;
    padding: 10px 0;
    text-align: center;
}

footer {
    background-color: #004d40;
    color: white;
    text-align: center;
    padding: 15px 0;
    position: absolute;
    bottom: 0;
    width: 100%;
}

.container {
    padding: 20px;
    margin: auto;
    max-width: 800px;
}

.button {
    background-color: #00796b;
    color: white;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
}

.button:hover {
    background-color: #004d40;
}