/* Welcome to the whimsical world of fungi! Channeling the magical essence of the forest floor. */

body {
    background-color: #f5f5dc; /* Beige, like a soft mushroom cap */
    color: #3b3b3b; /* Dark earthy color */
    font-family: 'Courier New', Courier, monospace;
    margin: 0;
    padding: 0;
}

h1, h2, h3 {
    font-family: 'Papyrus', 'Fantasy';
    color: #4b5320; /* Forest green */
}

a {
    color: #ff6347; /* A nice tomato red to contrast */
    text-decoration: none;
}

a:hover {
    color: #ee2c2c; /* Bright red when you hover */
}

button {
    background-color: #8b4513; /* Saddle brown */
    color: #ffffff;
    border-radius: 8px;
    padding: 10px 20px;
    font-family: 'Papyrus', 'Fantasy';
    transition: background-color 0.3s;
}

button:hover {
    background-color: #a0522d; /* Sienna brown */
}

.fungi-text {
    font-style: italic;
    color: #556b2f; /* Dark olive green */
}

.fungi-container {
    max-width: 960px;
    margin: auto;
    padding: 20px;
}

.fungi-card {
    background-color: #deb887; /* Burlywood */
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.2s;
    margin: 10px;
    padding: 15px;
}

.fungi-card:hover {
    transform: scale(1.05);
}

.fungi-icon {
    width: 50px;
    height: 50px;
}