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

header, footer {
    background-color: #e0ffe0;
    padding: 20px;
    text-align: center;
    border-radius: 15px;
}

h1, h2, h3 {
    color: #5a5a5a;
}

a {
    color: #228822;
    text-decoration: none;
    transition: color 0.3s ease-in-out;
}

a:hover {
    color: #116611;
}

.froge-story {
    background: #d0f0c0;
    padding: 15px;
    border-radius: 10px;
    margin: 10px 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

button {
    background-color: #88cc88;
    color: #fff;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #77bb77;
}

.emoji-color {
    color: #446644;
}