/* Froge Care Guide Stylesheet */
body {
    background-color: #e0ffe0;
    font-family: 'Comic Sans MS', cursive, sans-serif;
    color: #333;
}

h1, h2, h3 {
    color: #006400;
}

a {
    color: #008b8b;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.navbar {
    background-color: #98fb98;
    padding: 10px;
}

.navbar a {
    margin: 0 15px;
}

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

.froge {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.froge img {
    max-width: 100px;
    height: auto;
    margin: 10px;
}

.footer {
    background: #bdb76b;
    color: #ffffff;
    text-align: center;
    padding: 10px 0;
    position: absolute;
    bottom: 0;
    width: 100%;
}

.froge-care-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.froge-care-table th, .froge-care-table td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: left;
}

.froge-care-table th {
    background-color: #32cd32;
    color: white;
}

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

button:hover {
    background-color: #228b22;
}