/* Frogetta CSS - Bringing the Joy of Frogs to Your Stylesheets! 🐸 */

body {
    background-color: #e0f7fa;
    font-family: 'Comic Sans MS', cursive, sans-serif;
    color: #004d40;
}

h1, h2, h3 {
    font-weight: bold;
    color: #00796b;
    text-align: center;
}

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

a:hover {
    text-decoration: underline;
}

button {
    background-color: #00796b;
    color: white;
    border: none;
    border-radius: 5px;
    padding: 10px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

/* Froge-themed borders */
.froge-border {
    border: 3px solid #00796b;
    border-radius: 15px;
}

/* Page footer styling */
footer {
    background-color: #004d40;
    color: white;
    text-align: center;
    padding: 20px 0;
}

footer a {
    color: #e0f7fa;
    margin: 0 10px;
}