/* Welcome to the enchanting world of froges ***/

body {
    background-color: #f0fff4;
    font-family: 'Comic Sans MS', cursive, sans-serif;
    color: #333333;
}

h1, h2, h3 {
    color: #006400;
    text-shadow: 1px 1px 2px #ffffff;
}

a {
    color: #008000;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
    color: #32CD32;
}

button {
    background-color: #008000;
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

button:hover {
    background-color: #006400;
}

footer {
    text-align: center;
    padding: 20px;
    background-color: #e6ffe6;
    color: #006400;
    margin-top: 20px;
}

.froge-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 20px;
}

.froge-item {
    width: 200px;
    margin: 10px;
    padding: 10px;
    background-color: #e6ffe6;
    border-radius: 10px;
    text-align: center;
}