/* Froge.ai Stylesheet Overview */

/* General Body Style */
body {
    font-family: 'Comic Sans MS', cursive, sans-serif;
    background-color: #e0f7fa;
    margin: 0;
    padding: 0;
}

/* Header Style */
header {
    background-color: #00796b;
    color: white;
    padding: 10px;
    text-align: center;
    font-size: 2em;
}

/* Froge Icon */
header::before {
    content: url('/assets/froge-icon.svg');
    display: inline-block;
    vertical-align: middle;
    margin-right: 15px;
}

/* Link Style */
a {
    color: #004d40;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Button Style */
button {
    background-color: #004d40;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
}

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