/* Pond styles for a mesmerizing web experience */
body {
    background-color: #e0f7fa;
    font-family: 'Comic Sans MS', cursive, sans-serif;
    color: #00695c;
    margin: 0;
    padding: 0;
}
h1, h2, h3 {
    color: #004d40;
}
a {
    color: #004d40;
    text-decoration: none;
    transition: color 0.3s ease;
}
a:hover {
    color: #00796b;
}
.pond {
    background-image: url('/assets/froge-illustration.svg');
    background-size: cover;
    border-radius: 50%;
    width: 200px;
    height: 200px;
    margin: 20px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}
.button {
    background-color: #00796b;
    border: none;
    color: white;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
    border-radius: 12px;
    transition: background-color 0.3s ease;
}
.button:hover {
    background-color: #004d40;
}