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

h1 {
    color: #356b36;
    text-align: center;
    font-size: 3em;
    margin-top: 20px;
}

p {
    padding: 20px;
    font-size: 1.25em;
}

a {
    color: #28a745;
    text-decoration: none;
}

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

.button {
    display: inline-block;
    background-color: #28a745;
    color: white;
    padding: 10px 25px;
    text-align: center;
    border-radius: 5px;
    box-shadow: 0 4px #999;
    transition: background-color 0.3s ease;
}

.button:hover {
    background-color: #216c2a;
}

footer {
    background-color: #356b36;
    color: #fff;
    text-align: center;
    padding: 10px;
    position: fixed;
    width: 100%;
    bottom: 0;
}

.frog-icon svg {
    width: 100px;
    height: auto;
    display: block;
    margin: 0 auto;
}

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

    p {
        font-size: 1em;
    }

    .button {
        padding: 8px 20px;
    }
}