* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #000;
    color: #fff;
    font-family: "Inter", "Segoe UI", sans-serif;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    min-height: 100vh;
    overflow: hidden;

    position: relative; /* gives .snowflake (position: absolute) a full-viewport containing block */
}

.snowflake {
    position: absolute;
    width: 10px;
    height: 10px;

    background: linear-gradient(white, white);
    border-radius: 50%;

    /* Workaround for Chromium's selective color inversion */
    filter: drop-shadow(0 0 10px white);

    z-index: -10; /* keep flakes above the black background, below #overlay */
    pointer-events: none; /* so they don't block clicks on #pfp / .social */
}

#pfp {
    width: 160px;
    height: 160px;
    object-fit: cover;

    border-radius: 50%;

    margin-bottom: 18px;

    transition: transform .35s ease;
    user-select: none;
}

#pfp:hover {
    transform: scale(1.05);
}

#name {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    letter-spacing: 1px;

    margin-bottom: 1px;
}

#snow {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: -10;
}

hr {
    width: 25%;
    height: 2px;

    border: none;
    border-radius: 999px;

    background: rgba(255, 255, 255, .15);

    margin: 20px 0;
}

#socials {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 18px;
}

.social {
    display: flex;
    justify-content: center;
    align-items: center;

    width: 52px;
    height: 52px;

    border-radius: 50%;

    color: #fff;

    text-decoration: none;

    transition:
        transform .25s ease,
        opacity .25s ease,
        background .25s ease;
}

.social svg {
    width: 28px;
    height: 28px;

    fill: currentColor;

    opacity: .65;

    transition:
        opacity .25s ease,
        transform .25s ease;
}

.social:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, .06);
}

.social:hover svg {
    opacity: 1;
    transform: scale(1.08);
}

.social:active {
    transform: translateY(-1px) scale(.96);
}

#overlay {
    position: fixed;
    inset: 0;

    display: flex;
    justify-content: center;
    align-items: center;

    background: #000;

    cursor: pointer;
    user-select: none;

    z-index: 999;
}

#overlay p {
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 2px;

    opacity: .65;

    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%,
    100% {
        opacity: .35;
    }

    50% {
        opacity: 1;
    }
}