html {
    color-scheme: dark;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

body {
    image-rendering: pixelated;
    background-color: #66e5ff;
    overflow: hidden;
    color: #000;
}

#cookie {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40%;
    transition: width 0.1s ease;
    cursor: pointer;
    -moz-user-select: none;
    -webkit-user-drag: none;
    -webkit-user-select: none;
    user-select: none;
    z-index: 1;
    border-radius: 20%;
}

#cookie:active {
    width: 41%;
}

#particles {
    pointer-events: none;
}

#particles * {
    z-index: 2;
}

.cookieParticle {
    position: absolute;
    width: 128px;
}

.pointParticle {
    color: #fff;
    position: absolute;
    animation: pointParticle .5s ease;
}

@keyframes pointParticle {
    0% {
        opacity: 1;
    }
    100% {
        transform: translateY(-20px);
        opacity: 0;
    }
}

header {
    position: fixed;
    z-index: 5;
    pointer-events: none;
    text-shadow: 2px 2px 0 var(--dim);
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
}

#cred {
    margin: 0;
    padding: 0;
    position: absolute;
    bottom: 10px;
    right: 10px;
}

@media only screen and (max-width: 600px) {
    #cookie {
        width: 75%;
        transition: width 0.2s ease;
    }

    #cookie:active {
        width: 78%;
    }

    .particle {
        width: 64px;
    }
}