/* Froge Stylesheet: Forest Theme */
body {
    background-color: #f0fff4;
    color: #055f50;
    font-family: 'Comic Sans MS', cursive, sans-serif;
}

h1, h2, h3 {
    color: #0c3c3d;
}

a {
    color: #007f5c;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.button {
    background-color: #00b894;
    border: none;
    color: white;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    margin: 4px 2px;
    cursor: pointer;
    border-radius: 8px;
}

.navbar {
    background-color: #c8f4dc;
    padding: 15px;
    border-bottom: 2px solid #2d6a4f;
}

.footer {
    background-color: #81b29a;
    color: white;
    text-align: center;
    padding: 5px 0;
} 

/* SVG icon styles */
.icon {
    fill: #38a3a5;
    width: 24px;
    height: 24px;
    margin: 0 5px;
}

.froggy {
    animation: hop 1s infinite alternate;
}

@keyframes hop {
    from { transform: translateY(0); }
    to { transform: translateY(-10px); }
}