/* Stylesheet for froge.ai */
body {
    background-color: #e0ffe0;
    font-family: 'Trebuchet MS', sans-serif;
    color: #2e8b57;
}

header {
    background-color: #98fb98;
    padding: 20px;
    text-align: center;
    font-size: 35px;
    font-weight: bold;
    color: #006400;
}

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

nav a:hover {
    color: #006400;
}

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

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

button:hover {
    background-color: #006400;
} 

.froge-logo {
    display: block;
    margin: 0 auto;
    width: 60px;
    height: 60px;
    background-image: url('https://froge.ai/froge.svg');
    background-size: contain;
}

.froge-link {
    color: #2e8b57;
    text-decoration: none;
    font-weight: bold;
}

.froge-link:hover {
    text-decoration: underline;
}

@media only screen and (max-width: 600px) {
    header {
        font-size: 30px;
    }

    nav {
        font-size: 14px;
    }
}