body {
    font-family: 'Comic Sans MS', cursive, sans-serif;
    background-image: url('/images/froge_background.svg');
    background-color: #e0ffe0;
    margin: 0;
    padding: 0;
}

h1, h2, h3 {
    color: #336633;
    text-align: center;
    margin-top: 20px;
}

p, a {
    color: #336633;
    font-size: 1.2em;
    padding: 0 20px;
    text-align: justify;
}

a {
    text-decoration: underline;
    transition: color 0.3s ease;
}

a:hover {
    color: #669966;
}

button {
    background-color: #99cc99;
    border: none;
    color: white;
    padding: 10px 24px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    transition: background-color 0.3s ease;
    cursor: pointer;
}

button:hover {
    background-color: #66cc66;
}

nav {
    background-color: #ccffcc;
    padding: 10px 0;
    display: flex;
    justify-content: center;
}

nav a {
    margin: 0 15px;
    color: #003300;
    font-weight: bold;
}

footer {
    background-color: #ccffcc;
    text-align: center;
    padding: 20px 0;
    position: fixed;
    width: 100%;
    bottom: 0;
    border-top: 2px solid #99cc99;
}

.footer-links a {
    margin: 0 5px;
    color: #003300;
    font-weight: bold;
}