/* Froge Theme CSS */
body {
    background-color: #e0f7fa;
    font-family: 'Comic Sans MS', 'Comic Sans', cursive;
    color: #00796b;
    margin: 0;
    padding: 0;
}

header {
    background-color: #4caf50;
    padding: 10px 0;
    text-align: center;
    color: white;
    font-size: 2em;
}

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

a:hover {
    text-decoration: underline;
}

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

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

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