/* Stylesheet for Frog Lovers */

body {
    background-color: #E8F5E9; /* A soft green hue for frog-loving ambiance! */
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #2E7D32; /* Deep froge green for text */
    line-height: 1.6;
}

header {
    background-color: #388E3C;
    padding: 20px;
    text-align: center;
    font-size: 24px;
    color: white;
}

footer {
    background-color: #1B5E20;
    text-align: center;
    padding: 10px;
    position: fixed;
    bottom: 0;
    width: 100%;
    color: white;
}

a {
    color: #66BB6A; /* Lush green like a lively frog */
    text-decoration: none;
}

a:hover {
    color: #43A047;
}

button {
    background-color: #689F38;
    border: none;
    color: white;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
    border-radius: 8px;
}

.button-primary {
    background-color: #7CB342;
}

.button-primary:hover {
    background-color: #558B2F;
}

.container {
    max-width: 960px;
    margin: 20px auto;
    padding: 10px;
}