/* Froge Style Unleashed! Get ready to hop into fashionable design! */

body {
    background-color: #eef6ee;
    font-family: 'Comic Sans MS', cursive, sans-serif;
    color: #333;
}

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

p {
    line-height: 1.6;
    padding: 0 15px;
}

a {
    color: #8b812f;
    text-decoration: none;
    transition: color 0.3s;
}

a:hover {
    color: #4a8b57;
}

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

.footer {
    background-color: #4a8b57;
    color: white;
    text-align: center;
    padding: 10px;
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
}

nav {
    background-color: #8b812f;
    color: white;
    padding: 10px;
    display: flex;
    justify-content: center;
    gap: 15px;
}
nav a {
    color: white;
}

img {
    display: block;
    margin: 0 auto;
}