/* Froge Adventures Style Sheet */
body {
    background-color: #e0ffe0;
    font-family: 'Comic Sans MS', cursive, sans-serif;
    color: #006400;
    margin: 0;
    padding: 0;
}

header {
    background-color: #32cd32;
    text-align: center;
    padding: 20px;
}

header h1 {
    color: #ffffff;
    font-size: 36px;
}

nav {
    display: flex;
    justify-content: space-around;
    background-color: #228b22;
    padding: 10px;
}

nav a {
    color: #ffffff;
    text-decoration: none;
    font-size: 18px;
}

nav a:hover {
    color: #ffff00;
    transition: color 0.3s ease-in-out;
}

main {
    padding: 20px;
}

footer {
    background-color: #32cd32;
    text-align: center;
    padding: 10px;
    position: absolute;
    width: 100%;
    bottom: 0;
}

footer p {
    color: #ffffff;
    font-size: 14px;
}