*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

section  
{
    position: relative;
    width: 100%;
    height: 100vh;
    background: radial-gradient(#333,#000);
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

section h2 
{
    color: #2d0af157;
    font-size: 8rem;
    text-transform: uppercase;
}

section .set
{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

section .set div {
    position: absolute;
    display: block;
}

section .set div:nth-child(1)
{
    left: 20%;
    animation: animate 15s linear infinite;
    animation-delay: -7s;
}
section .set div:nth-child(2)
{
    left: 20%;
    animation: animate 20s linear infinite;
    animation-delay: -5s;
}
section .set div:nth-child(3)
{
    left: 70%;
    animation: animate 20s linear infinite;
    animation-delay: 0s;
}
section .set div:nth-child(4)
{
    left: 0%;
    animation: animate 15s linear infinite;
    animation-delay: -5s;
}
section .set div:nth-child(5)
{
    left: 85%;
    animation: animate 18s linear infinite;
    animation-delay: -10s;
}
section .set div:nth-child(6)
{
    left: 0%;
    animation: animate 12s linear infinite;
    animation-delay: -10s;
}
section .set div:nth-child(7)
{
    left: 15%;
    animation: animate 14s linear infinite;
    animation-delay: -10s;
}
section .set div:nth-child(8)
{
    left: 60%;
    animation: animate 18s linear infinite;
    animation-delay: -10s;
}
@keyframes animate
{
     0% {
        opacity: 0;
        top: -10%;
        transform: translateX(-20px) rotate(0deg);

     }
    10%
    {
        opacity: 1;
    }
    20%
    {
        transform: translateX(-20px) rotate(45deg);
    }
    60%
    {
        transform: translateX(-20px) rotate(90deg);
    }
    80%
    {
        transform: translateX(-20px) rotate(180deg);
    }
    100%
    {
        top: 110%;
        transform: translateX(-20px) rotate(225deg);
    }
}
.backround{
    background: radial-gradient(aquamarine,#88aeb9);
}

.backaround{
    background: radial-gradient(rgb(236, 130, 8),#b19a50);
}

.backarounds{
    background: radial-gradient(rgb(4, 241, 182),#f3ba00);
}
 
@import url("https://fonts.googleapis.com/css2?family=Poppins");
 
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: "Poppin", sans-serif;
}
    

body {
    min-height: 100vh;
    background-image: url(wall.jpg);
    background-size: cover;
    background-position: center;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 100px;
    background-color: #f10a0a57;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
}

.logo {
    font-size: 35px;
    color:#030303;
    text-decoration: none;
    font-weight: 700;
}

.navbar a {
    position: relative;
    font-size: 18px;
    color: #000;
    font-weight: 500;
    text-decoration: none;
    margin-left: 40px;
}