.html{
    scrollbar-width: none;
}

body{
    background: linear-gradient(100deg, orangered 0%, white 50%, green 100%);
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tiranga{
    position: relative;
    top:-20px;
    width: 700px;
    height: 399px;
    background: linear-gradient(100deg, orangered 0%, white 50%, green 100%);
    overflow: hidden;
    animation: flag_animation 10s linear infinite;
}


.orange{
    width: 100%;
    height: 133px;
    background: orangered;
}

.white{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 133px;
    background: white;
}

.green{
    width: 100%;
    height: 133px;
    background: green;
}

.india{
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    border: 5px solid blue;
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
    animation: rotate 10s linear infinite;
}

@keyframes rotate{
    0%{
        transform: translate(-50%, -50%) rotate(0deg);
    }
    100%{
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.lines{
    position: absolute;
    width: 96%;
    height: 2.5px;
    background: blue;
    transform-origin: center;
    border-radius: 100%;
}

.center{
    position: absolute;
    z-index: 1;
    width: 15px;
    height: 15px;
    background: blue;
    border-radius: 50%;
    border: white 2px solid;
    filter: blur(0.6px);
}

#l1{
    transform: rotate(0deg);
}
#l2{
    transform: rotate(15deg);
}
#l3{
    transform: rotate(30deg);
}
#l4{
    transform: rotate(45deg);
}
#l5{
    transform: rotate(60deg);
}
#l6{
    transform: rotate(75deg);
}
#l7{
    transform: rotate(90deg);
}
#l8{
    transform: rotate(105deg);
}
#l9{
    transform: rotate(120deg);
}
#l10{
    transform: rotate(135deg);
}
#l11{
    transform: rotate(150deg);
}
#l12{
    transform: rotate(165deg);
}