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

h1, h2, h3, h4, h5, h6 {
    font-family: 'Froge Bold', cursive;
    color: #175e26;
    text-align: center;
}

a {
    text-decoration: none;
    color: #00843e;
    transition: color 0.3s;
}

a:hover {
    color: #005f2e;
}

.button {
    background-color: #58a76c;
    border: none;
    color: white;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    transition-duration: 0.4s;
    cursor: pointer;
    border-radius: 12px;
}

.button:hover {
    background-color: #3a7652;
    color: white;
}

.container {
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.froge-emoji {
    font-size: 48px;
}

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