/* Froge Stylesheet */
body {
    background-color: #e0f7e9; /* Soothing froge green */
    font-family: 'Comic Sans MS', cursive;
    color: #36454f; /* Dark text for contrast */
}

h1 {
    color: #2e8b57; /* Froggy forest green for headings */
    text-shadow: 2px 2px #a8d5ba;
}

a {
    color: #39a78e;
    text-decoration: none;
    transition: color 0.3s;
}

a:hover {
    color: #1f5849;
}

button {
    background-color: #a8d5ba;
    border: none;
    padding: 10px 20px;
    color: white;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #537a5a;
}

.froge-footer {
    background-color: #3c6e47;
    color: #ffffff;
    padding: 20px;
    text-align: center;
}

.froge-icon {
    width: 100px;
    height: auto;
    display: block;
    margin: 20px auto;
}