/******* Do not edit this file *******
Woody Code Snippets CSS and JS
Saved: Jul 16 2026 | 15:44:01 */
#veil{
    position:fixed;
    inset:0;
    z-index:99999;
    background:#000;
    display:flex;
    justify-content:center;
    align-items:center;
    transform:translateY(0);
    transition:transform .8s cubic-bezier(.76,0,.24,1);
}

#veil.reveal{
    transform:translateY(-100%);
    pointer-events:none;
}

#veil .vm{
    font-size:42px;
    font-weight:300;
    letter-spacing:.18em;
    color:#fff;
}

#veil .cur{
    color:#B8956A;
    animation:blink .8s step-end infinite;
}

@keyframes blink{
    0%,100%{opacity:1;}
    50%{opacity:0;}
}