body{
    margin: 0;
    padding: 0;
}
.container{
    z-index: 9;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.588);
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
}
audio{
    padding: 0 20px 30px 0;
}
.back{
    position: relative;
    /* margin: 0;
    padding: 0; */
    /* background-image: linear-gradient(to bottom, orange, white,green); */
    background-image: url('Netaji.jpg');
    /* background-size: cover; */
    width: 100%;
    height: 100vh;
    
}
.flag{
    display: flex;
    flex-direction: column;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    width: 50%;
    height: 50%;
    border-radius: 7px;
    box-shadow: 0 25px 42px rgba(0, 0, 0, 0.5);
     
}
.flag .orange{
    position: relative;
    background: orange;
    height: 33.33%;
    width: 100%;
    border-top-right-radius: 7px;
    border-top-left-radius: 7px;
    transform: scaleX(0);
    transform-origin: left;
    animation: slidein 1s ease .2s forwards;
}
.flag .white{
    position: relative;
    background: white;
    height: 33.33%;
    width: 100%;
}
.flag .white .ashok-chakra img{
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    width: 30%;
    height: 97%;
    animation: fadein .5s linear 2.2s forwards;
    opacity: 0;
     
    
}
@keyframes fadein{
    100%{
        opacity: 1;
    }
}
.flag .green{
    position: relative;
    background: green;
    height: 33.33%;
    width: 100%;
    border-bottom-right-radius: 7px;
    border-bottom-left-radius: 7px;
    transform: scaleX(0);
    transform-origin: right;
    animation: slidein 1s ease 1.2s forwards;
}

@keyframes slidein{
    0%{
        transform: scaleX(0);
    }
    100%{
        transform: scaleX(1);
    }
}
.title{
    position: absolute;
    left: 27%;
    top: 3%;
    font-size: 5em;
    background-image: linear-gradient(to bottom, orange, white,green);
    -webkit-background-clip: text;
    color: transparent;
     
}
.titlefoot{
    position: absolute;
    left: 40%;
    bottom: 3%;
    font-size: 5em;
    background-image: linear-gradient(to bottom, rgb(255, 166, 0), white,green  );
    -webkit-background-clip: text;
    color: transparent;
     
}
.back>p{
    position: absolute;
    bottom: 0;
    color: white;
    left: 50%;
    transform: translate(-50%);
    font-size: 1.1vw;
}