CSS drop shadow on translucent PNG

by nilloc

HTML

<img id="logo" src="../img/[email protected]">

CSS

#logo{
  height:128px;
  /* width:128px; */
  filter:drop-shadow(8px 8px 3px rgba(0,0,0,0.3));
}