```html ``` <!DOCTYPE html> <html> <head> <title> Google Drive API Gallery </title> <style> body { margin : 0 ; padding : 20px ; font-family : Arial , sans-serif ; [cite: 3] background : #f5f5f5 ; } #gallery { display : grid ; [cite: 4] grid-template-columns : repeat ( auto-fill , minmax ( 300px , 1fr )); [cite: 5] gap : 20px ; } .card { background : white ; border-radius : 12px ; overflow : hidden ; box-shadow : 0 2px 10px rgba(0,0,0,0.1) ; [cite: 6] transition : 0.3s ; } .card:hover { transform : translateY ( -5px ); [cite: 7] } img { width : 100% ; height : 300px ; object-fit : cover ; [cite: 8] display : block ; } .title { padding : 10px ; text-align : center ; font-size : 14px ; [cite: 9] word-break : break-word ; } .loading { ...