html,
body {
    margin: 0;
    height: 100%;
    background: #000;
    font-family: Arial;
    color: #fff;
    overflow: hidden
}

#intro,
#loader,
#meme,
#flash {
    position: fixed;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column
}

#cat {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    object-fit: contain;
    object-position: center;
    animation: none;
    z-index: 0;
}

#meme {
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0;
    transition: 1s
}

.bar {
    width: 250px;
    height: 10px;
    background: #444;
    border-radius: 8px;
    overflow: hidden
}

.bar div {
    height: 100%;
    width: 0;
    background: #fff
}

.hidden {
    display: none !important
}

#flash {
    background: #fff;
    opacity: 0;
    pointer-events: none;
    z-index: 50
}

#loader {
    z-index: 20;
    background: rgba(0, 0, 0, .55);
    gap: 16px
}

#loader div:first-child {
    font-size: 1.1rem;
    letter-spacing: .02em
}

#intro::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .45);
    z-index: 1;
}

#intro {
    position: fixed;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    overflow: hidden;
}

#intro h1,
#count {
    position: relative;
    z-index: 2;
}

#intro h1 {
    font-size: clamp(1.6rem, 6vw, 2.6rem);
    margin: 0 0 6px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, .6)
}

#count {
    font-size: clamp(3rem, 14vw, 5rem);
    font-weight: 700;
    text-shadow: 0 2px 12px rgba(0, 0, 0, .6)
}

#meme {
    background: #000
}