/* Welcome to the Froge Philharmonic Stylesheet */
body {
    background-color: #e0ffe0; /* soothing froge green */
    font-family: 'Comic Sans MS', cursive, sans-serif; /* playful elegance */
}

/* Menu Styles */
nav {
    background-color: #a3dca3;
    padding: 10px;
}

nav a {
    color: #205c20;
    text-decoration: none;
    font-size: 18px;
    margin: 0 15px;
}

nav a:hover {
    color: #0f3d0f;
}

/* Footer Styles */
footer {
    background-color: #dffedb;
    text-align: center;
    padding: 15px;
    font-size: 14px;
    color: #405e40;
}

button {
    background-image: url('/images/button-pattern.svg');
    border: none;
    color: white;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
}

button:hover {
    background-color: #72b872;
}