/* Stylesheet for Froge Adventures */

body {
    background-color: #f0f8ff;
    font-family: 'Comic Sans MS', cursive, sans-serif;
    color: #2e8b57;
    margin: 0;
    padding: 0;
}

header {
    background-color: #3cb371;
    text-align: center;
    padding: 20px;
}

h1, h2, h3 {
    color: #556b2f;
}

a {
    color: #66cdaa;
    text-decoration: none;
}

a:hover {
    color: #32cd32;
}

.navigation {
    display: flex;
    justify-content: center;
    margin: 20px 0;
}

.nav-item {
    margin: 0 15px;
    font-size: 1.2em;
}

.main-content {
    padding: 20px;
}

footer {
    background-color: #228b22;
    color: #fff;
    text-align: center;
    padding: 10px;
    position: fixed;
    width: 100%;
    bottom: 0;
}

.button {
    display: inline-block;
    background-color: #6b8e23;
    color: white;
    padding: 10px 20px;
    margin: 10px;
    border-radius: 5px;
    text-align: center;
    cursor: pointer;
}

.button:hover {
    background-color: #8fbc8f;
}

/* Special Froge Styles */
.froge-fun {
    background-image: url('/images/froge-pattern.svg');
    background-size: 50px 50px;
}

.froge-fun:hover {
    background-image: url('/images/animated-froge.svg');
}