/* Froge AI CSS Styles */
body {
    background-color: #e0f7fa;
    font-family: 'Comic Sans MS', cursive, sans-serif;
    color: #004d40;
}

h1, h2, h3 {
    color: #00796b;
    text-shadow: 2px 2px #004d40;
}

a {
    color: #004d40;
    text-decoration: none;
}

a:hover {
    color: #00796b;
    text-decoration: underline;
}

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

.button:hover {
    background-color: #00796b;
}

.froge-theme {
    background-image: url('/assets/froge.svg');
    background-size: cover;
    background-repeat: no-repeat;
    text-align: center;
    padding: 50px;
}