body {
    background-color: #e8f5e9;
    color: #333333;
    font-family: 'FrogeFont', sans-serif;
    margin: 0;
    padding: 0;
}

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

a {
    color: #1b5e20;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.header {
    background-color: #2e7d32;
    color: #ffffff;
    padding: 10px;
    text-align: center;
}

.main-content {
    padding: 20px;
}

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

.froge-banner {
    background-image: url('/froge.ai/images/froge-illustration.svg');
    background-size: cover;
    height: 200px;
    width: 100%;
    display: block;
    margin-bottom: 20px;
}

.button {
    background-color: #1b5e20;
    color: #ffffff;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.button:hover {
    background-color: #4caf50;
}