/* Welcome to froge.ai stylesheet! Frogs always stay fashionable! */
body {
    background-color: #f0f9ff;
    font-family: 'Comic Sans MS', cursive, sans-serif;
}

h1 {
    color: #3C763D;
    text-align: center;
    font-size: 3em;
    padding: 10px;
    text-shadow: 1px 1px 2px #008000;
}

p {
    color: #37474F;
    margin: 20px;
    font-size: 1.2em;
}

a {
    color: #289672;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

button {
    background-color: #8BC34A;
    color: #ffffff;
    border: none;
    padding: 10px 20px;
    font-size: 1em;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #558B2F;
}

.froge-hero {
    width: 100%;
    height: auto;
    text-align: center;
    margin-top: 20px;
}

.froge-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
}

svg {
    width: 100px;
    height: 100px;
    fill: #4CAF50;
    margin: 10px;
}