/* Frog Music CSS */
body {
    background-color: #e0ffdf;
    font-family: 'Comic Sans MS', sans-serif;
}

h1, h2, h3 {
    color: #008000;
    text-align: center;
}

.frog-btn {
    background-color: #4CAF50;
    border: none;
    color: white;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
    border-radius: 12px;
}

.frog-icon {
    width: 50px;
    height: 50px;
}

.link {
    color: #008000;
    text-decoration: none;
}

.link:hover {
    color: #00ff00;
}

.audio-controls {
    margin: 20px;
    display: flex;
    justify-content: center;
}

footer {
    background-color: #e0f7fa;
    text-align: center;
    padding: 10px;
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
}

footer p {
    margin: 0;
    color: #008080;
}

.frog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.frog-card {
    background-color: #fff;
    border: 2px solid #4CAF50;
    border-radius: 10px;
    padding: 15px;
    text-align: center;
}

svg.frog {
    fill: #32CD32;
}