body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #e0f7e9;
    color: #3b7620;
}

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

a {
    color: #12732b;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

button {
    background-color: #5fb85c;
    color: white;
    border: none;
    padding: 10px 20px;
    margin: 10px;
    cursor: pointer;
    border-radius: 5px;
}

button:hover {
    background-color: #4e9b4e;
}

.froge-banner {
    background: url(https://froge.ai/images/froge_banner.svg) no-repeat center;
    height: 200px;
    width: 100%;
}

.froge-links {
    display: flex;
    justify-content: center;
    padding: 20px;
}

.froge-links a {
    margin: 0 15px;
    padding: 5px 10px;
    background-color: #caf1d4;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.froge-links a:hover {
    background-color: #b0e0bc;
}