body {
    background-color: #e0ffe0;
    font-family: "Comic Sans MS", cursive, sans-serif;
}

h1, h2, h3 {
    color: #008000;
    text-align: center;
}

p {
    font-size: 1.2em;
    line-height: 1.5;
    color: #004400;
}

a {
    color: #00cc00;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.button {
    display: inline-block;
    padding: 10px 20px;
    font-size: 1em;
    color: white;
    background-color: #008800;
    border-radius: 5px;
    text-align: center;
}

.button:hover {
    background-color: #00aa00;
}

.froge-icon {
    width: 50px;
    height: 50px;
}

nav {
    background-color: #009900;
    padding: 15px;
    text-align: center;
}

nav a {
    margin: 0 10px;
    font-size: 1.1em;
    color: white;
    text-transform: uppercase;
}

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