/* customizable snowflake styling */
.loader button {
    width: 50%;
    height: 100px;
    position: fixed;
    left: 50%;
    top: 45%;
    transform: translateY(-50%);
    transform: translateX(-50%);
    background: center no-repeat #fff;
    z-index: 9999999999999999999999;
    font-size: 50px;
    outline: none;
    box-sizing: border-box;
    border: none;
    border-radius: .3em;
    text-transform: uppercase;
    box-shadow: 0 3px 6px rgba(0, 0, 0, .16), 0 3px 6px rgba(110, 80, 20, .4),
        inset 0 -2px 5px 1px rgba(139, 66, 8, 1),
        inset 0 -1px 1px 3px rgba(250, 227, 133, 1);
    background-image: linear-gradient(160deg, #a54e07, #b47e11, #fef1a2, #bc881b, #a54e07);
    border: 1px solid #a55d07;
    color: rgb(120, 50, 5);
    text-shadow: 0 2px 2px rgba(250, 227, 133, 1);
    cursor: pointer;
    transition: all .2s ease-in-out;
    background-size: 100% 100%;
    background-position: center;
}

.golden-btn:focus,
.golden-btn:hover {
    background-size: 150% 150%;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23),
        inset 0 -2px 5px 1px #b17d10,
        inset 0 -1px 1px 3px rgba(250, 227, 133, 1);
    border: 1px solid rgba(165, 93, 7, .6);
    color: rgba(120, 50, 5, .8);
}

.golden-btn:active {
    box-shadow: 0 3px 6px rgba(0, 0, 0, .16), 0 3px 6px rgba(110, 80, 20, .4),
        inset 0 -2px 5px 1px #b17d10,
        inset 0 -1px 1px 3px rgba(250, 227, 133, 1);
}

.loader {
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    z-index: 999;
    background: url(img/back.png) center no-repeat #000;
}

.song {
    display: none;
}

body {
    background-color: #FFDAB9;
}

img {
    width: 100%;
}

.balloon-border {
    position: fixed;
    top: 100%;
    opacity: 0.5;
    z-index: 99999999;
}

.area {
    text-align: center;
    font-size: 70px;
    color: #C4515C;
    letter-spacing: -7px;
    font-weight: 700;
    text-transform: uppercase;
    animation: spin 2s ease-out infinite;
    text-shadow: 0px 0px 5px #fff, 0px 0px 7px #fff;
}

.name-target {
    text-transform: capitalize;
    display: inline-block;
    padding-bottom: 12px;
    font-size: 110px;
    -webkit-text-stroke: 2px rgba(255, 0, 0, 0.55);
    background: linear-gradient(90deg, #ff4da6, #ffd166, #8aff80, #66d9ff, #c792ff, #ff4da6);
    background-size: 250% 250%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: rgbShift 4s linear infinite;
    text-shadow:
        0 0 12px rgba(255, 255, 255, 0.6),
        0 0 24px rgba(255, 160, 255, 0.45),
        0 0 38px rgba(70, 200, 255, 0.4);
}

.name-target .letter {
    display: inline-block;
    background: inherit;
    background-size: inherit;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: wave 1.4s ease-in-out infinite;
    animation-delay: calc(var(--i) * 0.08s);
}
#confetti {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
}

#bluescreen-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background-color: #1491ff;
    background-image: url(bluescreen.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    z-index: 1000000000;
}

#random-pop-container {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 50%;
    pointer-events: none;
    z-index: 9999999;
}

#poro-burst-container {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9999998;
}

.poro-burst {
    position: absolute;
    width: 120px;
    max-width: 22vw;
    transform: scale(0.6) rotate(var(--poro-rot, 0deg));
    opacity: 0;
    animation: poroPop 4s ease-out forwards;
    filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.25));
}

.random-pop {
    position: absolute;
    width: 220px;
    max-width: 35vw;
    max-height: 260px;
    transform: rotate(var(--rot, 25deg));
    filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.2));
    opacity: 0;
    animation: popFade 5s ease-in-out forwards;
}

@keyframes popFade {
    0% {
        opacity: 0;
        transform: translateY(40px) rotate(var(--rot, 25deg));
    }

    15% {
        opacity: 1;
        transform: translateY(0) rotate(var(--rot, 25deg));
    }

    80% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        transform: translateY(-20px) rotate(var(--rot, 25deg));
    }
}

@keyframes rgbShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

@keyframes poroPop {
    0% {
        opacity: 0;
        transform: scale(0.6) translateY(20px) rotate(var(--poro-rot, 0deg));
    }

    15% {
        opacity: 1;
        transform: scale(1) translateY(0) rotate(var(--poro-rot, 0deg));
    }

    80% {
        opacity: 1;
        transform: scale(1.05) translateY(-5px) rotate(var(--poro-rot, 0deg));
    }

    100% {
        opacity: 0;
        transform: scale(1.1) translateY(-10px) rotate(var(--poro-rot, 0deg));
    }
}

@keyframes wave {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes spin {
    0% {
        transform: rotateZ(0);
    }

    25% {
        transform: rotateZ(10deg);
    }

    50% {
        transform: rotateZ(0deg);
    }

    75% {
        transform: rotateZ(-10deg);
    }
}

.type-wrap {
    font-size: 25px;
    color: #C4515C;

}

.cake {
    position: absolute;
    left: 50%;
    top: 400px;
    transform: translateX(-50%);
}
