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

h1, h2, h3 {
    color: #388e3c;
}

a {
    color: #1976d2;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.frog-container {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    padding: 20px;
}

.frog-box {
    background-color: #a5d6a7;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.frog-image {
    max-width: 100%;
    height: auto;
}

button {
    background-color: #ffb74d;
    border: none;
    color: white;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    transition-duration: 0.4s;
    cursor: pointer;
}

button:hover {
    background-color: #ffa726;
}

@media (max-width: 600px) {
    .frog-container {
        flex-direction: column;
    }
}