/* Flora.css */

/* A delightful and vibrant CSS stylesheet dedicated to the beauty and elegance of froges. */

body {
    background-color: #e0ffe0; /* Light green for a froge-friendly atmosphere */
    color: #336633; /* Froge green font color */
    font-family: 'Comic Sans MS', sans-serif; /* Whimsical font for a playful experience */
}

/* Froge Header */
header {
    background-color: #008000;
    color: white;
    text-align: center;
    padding: 1em;
    border-bottom: 5px solid #004d00;
}

header h1 {
    font-size: 2.5em;
    margin: 0;
}

/* Froge Links */
nav a {
    color: #00cc00;
    text-decoration: none;
    padding: 0.5em;
}

nav a:hover {
    text-decoration: underline;
    background-color: #ccffcc;
}

/* Froge Footer */
footer {
    background-color: #008000;
    color: white;
    text-align: center;
    padding: 0.5em;
    position: fixed;
    bottom: 0;
    width: 100%;
}