html {
    background-color: #08101e;
}

img {
    position: fixed;
    top: 50vh;
    left: 50vw;
    transform: translate3d(-50%, -50%, 0);
    image-rendering: pixelated;
}

#text {
    width: round(down, clamp(160px, 100%, 480px), 160px);
}

#roundel {
    height: round(down, clamp(186px, 50%, 744px), 186px);
}

#overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #08101e00;
    pointer-events: none;
    animation: fade 1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

@keyframes fade {
    0% {
        background-color: #08101eff;
    }
    10% {
        background-color: #08101eff;
    }
    100% {
        background-color: #08101e00;
    }
}
