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

header {
    background-color: #32cd32;
    padding: 10px;
    text-align: center;
    font-size: 35px;
    color: white;
}

nav {
    margin: 0 auto;
    text-align: center;
    font-size: 20px;
}

nav a {
    margin: 0 15px;
    color: #006400;
    text-decoration: none;
}

nav a:hover {
    text-decoration: underline;
}

button {
    background-color: #9acd32; 
    border: none;
    color: white;
    padding: 10px 20px;
    text-align: center;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
}

button:hover {
    background-color: #6b8e23;
}

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