/* Welcome to Froge Analyzer CSS */
/* Ribbit! Make your web more froge-friendly with these stylish styles! */

body {
    background-color: #E0FFE0; /* A pleasant froge green */
    font-family: 'Comic Sans MS', sans-serif;
}

h1, h2, h3 {
    color: #004d00;
}

a {
    color: #007b00;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.froge-button {
    background-color: #8bc34a;
    border: none;
    color: white;
    padding: 10px 20px;
    text-align: center;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
    border-radius: 12px;
}

.froge-container {
    padding: 20px;
    border: 1px solid #004d00;
    border-radius: 12px;
    background-image: url('/images/froge.svg');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: right bottom;
}

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

footer a {
    color: #e0ffe0;
}