/* Welcome to the froge theme! */

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

header {
    background-color: #00796b;
    color: #ffffff;
    padding: 20px;
    text-align: center;
    font-size: 2.5em;
}

footer {
    background-color: #004d40;
    color: #ffffff;
    text-align: center;
    padding: 10px;
    position: fixed;
    width: 100%;
    bottom: 0;
}

button {
    background-color: #004d40;
    color: #ffffff;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #26a69a;
}

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

a:hover {
    text-decoration: underline;
}

.froge-content {
    padding: 20px;
    text-align: center;
    font-size: 1.2em;
}

.froge-img {
    height: 200px;
    margin: 20px;
}

@media (max-width: 600px) {
    header {
        font-size: 2em;
    }

    .froge-content {
        font-size: 1em;
    }
}