/* FROGE ADVENTURE STYLESHEET */
/* Embrace the green! */
body {
    background-color: #e0f7e0; /* soothing froge green */
    font-family: 'Comic Sans MS', cursive, sans-serif;
    color: #005500; /* dark froge green */
}

h1, h2, h3 {
    text-align: center;
    font-weight: bold;
    color: #004400;
    text-transform: uppercase;
}

a {
    color: #ffa500; /* vibrant froge orange */
    text-decoration: none;
}

a:hover {
    color: #ff4500; /* intense froge red */
}

button {
    background-color: #98fb98; /* light froge green */
    border: none;
    border-radius: 12px;
    padding: 10px 24px;
    font-size: 16px;
    color: #ffffff; /* plain white */
    cursor: pointer;
}

button:hover {
    background-color: #3cb371; /* medium froge green */
}

footer {
    background-color: #2e8b57; /* sea froge green */
    color: #ffffff;
    text-align: center;
    padding: 10px;
}