*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}


body{
    margin:0;
    overflow:hidden;
    background:#0b0b0b;
}


#intro{

    position:fixed;

    inset:0;

    width:100%;
    height:100%;

    display:flex;

    justify-content:center;

    align-items:center;

    background:#0b0b0b;

    z-index:9999;

    cursor:pointer;

}



#animationFrame{

    width:100%;
    height:100%;

    object-fit:cover;

    transform-origin:center center;

    will-change:transform;

}



#website{

    opacity:0;

    transition:opacity 2s ease;

    min-height:100vh;

}



#website.show{

    opacity:1;

}

