body { background: #222; color: white; text-align: center; font-family: sans-serif; }

.grid { 
    display: flex; 
    flex-wrap: wrap; 
    justify-content: center; 
    gap: 20px; 
    padding: 20px; 
}

.banana-card img { 
    width: 100%;
    height: auto; 
}

.banana-card { 
    border: 2px solid #555; 
    padding: 15px; 
    width: 200px; 
    text-decoration: none; 
    color: white; 
    display: block; 
    background: #333; 
    transition: 0.3s;
}

.banana-card:hover { 
    border-color: yellow;
    box-shadow: 0 0 15px yellow;
    transform: scale(1.05);
}