body {
    background-color: #eaffd0;
    font-family: 'Trebuchet MS', sans-serif;
    color: #3a3a3a;
    margin: 0;
    padding: 0;
}

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

nav a {
    color: white;
    text-decoration: none;
    margin: 0 15px;
    font-weight: bold;
}

nav a:hover {
    text-decoration: underline;
}

main {
    padding: 20px;
}

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

button {
    background-color: #8bc34a;
    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;
    transition-duration: 0.4s;
}

button:hover {
    background-color: white;
    color: black;
    border: 2px solid #8bc34a;
}

.froge-img {
    width: 100px;
    height: auto;
    margin: 20px 0;
}

.link-container {
    margin-top: 20px;
}

.link-container a {
    display: inline-block;
    background-color: #c5e1a5;
    color: #33691e;
    padding: 10px 15px;
    margin: 5px;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.link-container a:hover {
    background-color: #aed581;
}