/* Welcome to the Froge Land! 🌿 Enjoy your green journey */
body {
    background-color: #e0f7e0; /* Froge green */
    font-family: 'Comic Sans MS', cursive, sans-serif;
    margin: 0;
    padding: 0;
    color: #2a472a; /* Froge forest green */
}

h1, h2, h3, h4, h5, h6 {
    color: #3b5e3b;
}

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

a:hover {
    color: #33aa33;
}

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

.button:hover {
    background-color: #45a049;
}