*
{
    margin:0;
    padding: 0;
    box-sizing: border-box;
}
body
{
    min-height: 100vh;
    background: #000000;
}
.containter
{
 position: relative;
 width: 100%;
 height: 100vh;
 overflow: hidden;
}
.bubbles
{
    position: relative;
    display: flex;
}
.bubbles span
{
    position: relative;
    width: 30px;
    height: 30px;
    background: red;
    margin: 0 4px;
    border-radius: 50%;
    box-shadow:  0 0 0 10px darkred,
    0 0 50px red,
    0 0 100px red;
    animation: animate 15s linear infinite;
    animation-duration: calc(125s / var(--i));
}
.bubbles span:nth-child(even)
{
    background: blue;
    box-shadow:  0 0 0 10px darkblue,
    0 0 50px blue,
    0 0 100px blue;
}
@keyframes animate
{
    0%
    {
        transform: translateY(100vh) scale(0);
    }
    100%
    {
        transform: translateY(-10vh) scale(1);
    }
}

.youtube
{
    position: absolute;
    left: 39%;
    bottom: 60%;
    width: 450px;
    height: 55px;
    font-size: xx-large;
    font-family: fantasy;
    background-color: rgb(15, 6, 99);
    border: none;
    outline: none;
    color:rgb(0, 0, 0);
    cursor: pointer;
    z-index: 0%;
    border-radius: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.youtube::before
{
    position: absolute;
    content: '';
    background: linear-gradient(190deg, red, orange, yellow, green, lightblue, blue, purple, #dd05f5, red);
    left: -2px;
    top: -2px;
    opacity: 0;
    background-size: 400%;
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    filter: blur(5px);
    animation: anim 10s linear infinite;
    border-radius: 90px;
    transition: opacity .4s ease-in;
    z-index: -1;
}
.youtube::before
{
    opacity: 1;
}
.youtube::after
{
    z-index: -1;
    content: '';
    position: absolute;
    background-color: rgb(15, 6, 99);
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    border-radius: 90px;
}
@keyframes anim
{
    0%{
        background-position: 0 0;
    }
    50%{
        background-position: 500% 0;
    }
    100%{
        background-position: 0 0;
    }
}
.stream
{
    position: absolute;
    left: 39%;
    bottom: 50%;
    width: 450px;
    height: 55px;
    font-size: xx-large;
    font-family: fantasy;
    background-color: rgb(15, 6, 99);
    border: none;
    outline: none;
    color:rgb(0, 0, 0);
    cursor: pointer;
    z-index: 0%;
    border-radius: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.stream::before
{
    position: absolute;
    content: '';
    background: linear-gradient(190deg, red, orange, yellow, green, lightblue, blue, purple, #dd05f5, red);
    left: -2px;
    top: -2px;
    opacity: 0;
    background-size: 400%;
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    filter: blur(5px);
    animation: anim 10s linear infinite;
    border-radius: 90px;
    transition: opacity .4s ease-in;
    z-index: -1;
}
.stream::before
{
    opacity: 1;
}
.stream::after
{
    z-index: -1;
    content: '';
    position: absolute;
    background-color: rgb(15, 6, 99);
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    border-radius: 90px;
}
.GuppyNodes
{
    position: absolute;
    left: 39%;
    bottom: 40%;
    width: 450px;
    height: 55px;
    font-size: xx-large;
    font-family: fantasy;
    background-color: rgb(15, 6, 99);
    border: none;
    outline: none;
    color:rgb(0, 0, 0);
    cursor: pointer;
    z-index: 0%;
    border-radius: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.GuppyNodes::before
{
    position: absolute;
    content: '';
    background: linear-gradient(190deg, red, orange, yellow, green, lightblue, blue, purple, #dd05f5, red);
    left: -2px;
    top: -2px;
    opacity: 0;
    background-size: 400%;
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    filter: blur(5px);
    animation: anim 10s linear infinite;
    border-radius: 90px;
    transition: opacity .4s ease-in;
    z-index: -1;
}
.GuppyNodes::before
{
    opacity: 1;
}
.GuppyNodes::after
{
    z-index: -1;
    content: '';
    position: absolute;
    background-color: rgb(15, 6, 99);
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    border-radius: 90px;
}
.GuppyNodesYoutube
{
    position: absolute;
    left: 39%;
    bottom: 30%;
    width: 450px;
    height: 55px;
    font-size: xx-large;
    font-family: fantasy;
    background-color: rgb(15, 6, 99);
    border: none;
    outline: none;
    color:rgb(0, 0, 0);
    cursor: pointer;
    z-index: 0%;
    border-radius: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.GuppyNodesYoutube::before
{
    position: absolute;
    content: '';
    background: linear-gradient(190deg, red, orange, yellow, green, lightblue, blue, purple, #dd05f5, red);
    left: -2px;
    top: -2px;
    opacity: 0;
    background-size: 400%;
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    filter: blur(5px);
    animation: anim 10s linear infinite;
    border-radius: 90px;
    transition: opacity .4s ease-in;
    z-index: -1;
}
.GuppyNodesYoutube::before
{
    opacity: 1;
}
.GuppyNodesYoutube::after
{
    z-index: -1;
    content: '';
    position: absolute;
    background-color: rgb(15, 6, 99);
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    border-radius: 90px;
}
.rubrik
{
    position: absolute;
    font-size: xxx-large;
    color: white;
    left: 38%;
    bottom: 70%;
}