body {
    background-color: #e0ffdb;
    font-family: "Comic Sans MS", "Comic Sans", cursive;
    color: #005500;
    margin: 0;
    padding: 0;
}

.header {
    background-color: #009900;
    text-align: center;
    padding: 20px;
}

.header h1 {
    color: #ffffff;
    font-size: 2.5em;
}

.link {
    text-decoration: none;
    color: #005500;
}

.link:hover {
    color: #00aa00;
}

.froge-button {
    background-color: #e0ffdb;
    border: 2px solid #009900;
    border-radius: 8px;
    color: #005500;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    transition-duration: 0.4s;
    cursor: pointer;
}

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

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