body {
    background-color: #e0f7fa;
    font-family: 'Comic Sans MS', cursive;
    margin: 0;
    padding: 0;
}

header {
    background-color: #004d40;
    color: #ffffff;
    padding: 1rem;
    text-align: center;
}

.footer {
    background-color: #00695c;
    color: #ffffff;
    text-align: center;
    padding: 1rem;
    position: absolute;
    width: 100%;
    bottom: 0;
}

a {
    color: #ffeb3b;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #fbc02d;
}

.froge-happy {
    fill: #81c784;
    transition: fill 0.3s;
}

.froge-happy:hover {
    fill: #66bb6a;
}

.froge-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin: 2rem 0;
}

.froge-link {
    margin: 1rem;
    transition: transform 0.3s;
}

.froge-link:hover {
    transform: scale(1.1);
}