body {
    background-color: #e0f7fa;
    font-family: 'Comic Sans MS', cursive;
    color: #00796b;
}

h1, h2, h3 {
    font-family: 'Marker Felt', fantasy;
    color: #004d40;
}

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

a:hover {
    color: #00796b;
}

.froge-fun {
    border: 2px dashed #fff;
    background-color: #a7ffeb;
    padding: 10px;
    border-radius: 8px;
    margin: 10px 0;
    transition: transform 0.2s;
}

.froge-fun:hover {
    transform: scale(1.05);
}

@keyframes froge-dance {
    0% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0); }
}

.froge-dance {
    animation: froge-dance 1s infinite;
}

footer {
    text-align: center;
    padding: 20px;
    font-size: 0.9em;
    color: #00695c;
}

img {
    max-width: 100%;
    height: auto;
}