/* Froge Aesthetic Fan Club Stylesheet */
body {
    background-color: #e0ffe0;
    font-family: 'Comic Sans MS', cursive;
    color: #004400;
}

header {
    background-color: #aaffaa;
    padding: 10px;
    text-align: center;
}

footer {
    background-color: #aaffaa;
    padding: 10px;
    text-align: center;
}

h1, h2, h3 {
    color: #008000;
    text-align: center;
}

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

a:hover {
    text-decoration: underline;
}

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

nav a {
    margin: 0 15px;
}

button {
    background-color: #b4eeb4;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
}

button:hover {
    background-color: #98cc98;
}