/* Styles for the Froge.ai Website - We love froges! */

/* Body and structure */
body {
    font-family: 'Comic Sans MS', cursive, sans-serif;
    background: #e0f7fa; /* light cyan background for a calming effect */
    color: #004d40;
    margin: 0;
    padding: 0;
}

header {
    background: #00796b; /* Stylish teal froge color */
    color: white;
    padding: 20px;
    text-align: center;
}

nav {
    background-color: #004d40;
    text-align: center;
    padding: 10px 0;
}

nav a {
    color: #e0f7fa;
    text-decoration: none;
    margin: 0 15px;
}

nav a:hover {
    text-decoration: underline;
}

/* Main content style */
main {
    padding: 20px;
}

/* Footer design */
footer {
    background: #00796b;
    color: white;
    text-align: center;
    padding: 15px;
    position: fixed;
    bottom: 0;
    width: 100%;
}

/* Fun frog visuals */
.froge-icon {
    fill: #004d40;
    width: 50px;
    height: 50px;
}

/* Interactive button styles */
button {
    background-color: #004d40;
    color: #e0f7fa;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    margin-top: 10px;
}

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

/* Responsive design */
@media only screen and (max-width: 600px) {
    header, footer {
        font-size: 14px;
    }
    nav a {
        display: block;
        margin: 10px 0;
    }
}