*   {
    margin: 0 0 0 0;
    padding: 0 0 0 0;
    box-sizing: border-box;
    color: #ffffff;
    z-index: 10;
}

html{
    background-color: #1A1A1A;
    overflow: hidden;
}

.header {
    background-color: darkblue;
}

.fuckyou    {
    transform: skew(10deg);
    margin: 10px 15px;
}

.bnnuy  {
    position: absolute;
    width: 100px;
    height: 60px;
    background-color: transparent;
    background-image: url("reference/bnnuy.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    bottom: 2.5%;
    right: 2%;
    z-index: 11;
}

.footer {
    position: absolute;
    bottom: 1%;
    left: 1%;
    width: 98%;
    background-color: #242526;
    border: solid #00ffff;
    margin: auto;
    padding: 5px;
}

.shit   {
    position: relative;
    height: 100vh;
    overflow: hidden;
    z-index: 0;
}

.pit    {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    display: grid;
    justify-items: center;
    align-items: end;
}

.ball   {
    width: 30px;
    height: 30px;
    border-radius: 100%;
    background: #f5f5f5;
    box-shadow: 0px 2px 10px 0 #00ffff, 2px 0px 10px 0 #ff9500;
    z-index: 0;

    animation: ball 5s forwards ease-out infinite;
}

.layer1 {
    top: 0;
    z-index: 2;
    grid-template-columns: repeat(25, 1fr);
    gap: 5px;
}

.layer2 {
    top: 0;
    filter: blur(2px);
    transform: translateY(20px) scale(0.9);
    animation-delay: 1.5s;
    animation-duration: 6s;
    z-index: 1;
    grid-template-columns: repeat(30, 1fr);
    gap: 2px;
}

@keyframes ball{
    0%  {
        transform: translate(0,20vh);
        opacity: 100%;
    }

    60% {
        opacity: 100%
    }

    90% {
        opacity: 0%
    }

    100%    {
        transform: translate(0,-20vh);
        opacity: 0%;
    }
}

.ball:nth-child(3n) { animation-duration: 4s; }
.ball:nth-child(4n) { animation-duration: 6s; }
.ball:nth-child(5n) { animation-delay: 2s; }






