/* ====================================================
   SEAGULL — pixel art seagull animation
   ==================================================== */
.seagull {
    position: fixed;
    pointer-events: none;
    image-rendering: pixelated;
    -ms-interpolation-mode: nearest-neighbor;
    z-index: 5;
}
.seagull canvas {
    image-rendering: pixelated;
    display: block;
}

@media (max-width: 640px) {
    .seagull canvas { transform: scale(0.75); transform-origin: bottom left; }
}
