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

h1, h2, h3 {
    color: #00a676;
    text-shadow: 2px 2px #005c3b;
}

a {
    color: #00a676;
    text-decoration: none;
    transition: color 0.3s;
}

a:hover {
    color: #007d54;
}

button {
    background-color: #00a676;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
}

button:hover {
    background-color: #007d54;
}

.froge-footer {
    text-align: center;
    padding: 20px;
    background-color: #005c3b;
    color: white;
    position: fixed;
    width: 100%;
    bottom: 0;
}

.froge-nav {
    background-color: #007d54;
    overflow: hidden;
}

.froge-nav a {
    float: left;
    display: block;
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
}

.froge-nav a:hover {
    background-color: #005c3b;
}