@keyframes blink {
    0%, 100% { transform: scaleY(1); }
    50% { transform: scaleY(0); }
}

.eyelid {
    animation: blink 3s infinite;
}
