/* import 'animate.css'; */
 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
 }

body{
    background-color: rgb(17, 17, 17);
    color: aliceblue;

}

canvas {
    position: fixed;
    top: 0;
    display: block;
    z-index: -9999;
}
.nav{
    position: fixed;
    overflow: hidden;
    margin: 0;
    padding: 0;
    z-index: 99;
    list-style-type: none;
    justify-content: space-between;
    background-color: rgb(0, 0, 0);
    /* filter: blur(5px); */
    display: flex;
    top: 0;
    left: 0;
    width: 100%;
    height: 4rem ;
    /* left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: 50vw; */
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
/* ul a {
    font-weight: 400;
    display: block;
    padding: 1rem 8rem;
    text-decoration: none;
    color: aliceblue;
} */

ul li a {
    display: block;
    color: white;
    padding: 14px 3rem;
    text-decoration: none;
    margin-right: auto;
    padding-left: 5rem;
    padding-right: 5rem;
}
ul li {
    float: none;
}
ul img{
    width: 140px;
    height: auto;
    display: block;
    /* padding-bottom: 2rem; */
    /* padding-top: 0rem; */
}

ul li a:hover{
    color: rgba(0, 205, 62, 0.74);
}
.icon {
    display: none;
}

.line{
    position:fixed;
    background-color: rgb(0, 158, 45);
    /* width: 100%; */
    height: 6px;
    margin-top: 3rem;
    z-index: -5;
    top: 1rem;
    left: 0;
    width: 100%;
    /* left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: 50vw; */
    filter: blur(10px);
}
.middle{
    position: absolute;
    /* display: flex; */
    /* z-index: 0; */
    margin: 0;
    width: 100%;
    height: 100%;
    flex-direction: column;
    /* margin-top: 10%; */
    justify-content: center;
    align-content: center;
    text-align: center;
    font-family: "Iceland", sans-serif;
}
.head{
    position: relative;
    margin: 0;
    padding: 0;
    z-index: 5;
    font-size: 5rem;
    animation: loading;
    animation-duration: 2s;
}
.middle h2{
    font-size: 3rem;
    background-color: rgba(0, 223, 56, 0.685);
    /* filter: blur(3px); */
    animation: 2s  grow;
}
.vidyut {
    /* z-index: 155; */
    position: relative;
    background-color: rgba(0, 234, 66, 0.45);
    border-radius: 5px;
    font-weight: 900;
    /* opacity: 0.3; */
    /* width: rem; */
}
.vidyutdiv {
    position: absolute;
    /* height: 100%; */
    /* display: flex; */
    /* margin: 0; */
    /* margin-bottom: 0px; */
    bottom: 0;
    margin-left: 48%;
    justify-content: center;
    align-content: center;
    text-align: center;
    font-family: "Iceland", sans-serif;
}
.vidyut_down {
    position: absolute;
    bottom: 20px;
    font-weight: 100;
    font-size: 1rem;
    /* left: 50%; */
    animation: 2s infinite updown;
    
}

.about{
    position: absolute;
    height: 30rem;
    width: 100%;
    display: flex;
    /* z-index: 22; */
    color: aliceblue;
}

@keyframes loading{
    0%{
        font-size: 3.5rem;
    }
    100%{
        font-size: 5rem;
    }
}
@keyframes grow {

    0% {
        scale: 0%;
        filter: blur(10px);
    }

    100% {
        scale: 100%;
        filter: blur(0px);
    }
}

@keyframes updown {

    0% {
        translate: 0 0;
        scale: 100%;
    }
    
    50% {
        translate: 0 -10px ;
        scale: 100%;
    }
    
    0%{
        translate: 0 0;
        scale: 100%;
    }
}

@media only screen and (max-width: 600px) {
    .vidyut {
            /* z-index: 155; */
            position: relative;
            background-color: rgba(0, 234, 66, 0.45);
            border-radius: 5px;
            font-weight: 900;
            /* opacity: 0.3; */
            /* width: rem; */
        }
        .middle h2 {
            font-size: 2.1rem;
            background-color: rgba(0, 223, 56, 0.685);
            /* filter: blur(3px); */
            animation: 2s grow;
        }
        .head {
            position: relative;
            margin: 0;
            padding: 0;
            z-index: 5;
            font-size: 3rem;
            animation: loading;
            animation-duration: 2s;
        }
}

/* small */
@media screen and (max-width: 450px) {
    .nav a:not(:first-child) {
        display: none;
    }

    .nav a.icon {
        float: right;
        display: block;
    }
}

@media screen and (max-width: 450px) {
    .nav.responsive {
        position: relative;
    }

    .nav.responsive .icon {
        position: absolute;
        right: 0;
        top: 0;
    }

    .nav.responsive a {
        float: none;
        display: block;
        text-align: left;
    }
    .nav{
            position: fixed;
                overflow: hidden;
                margin: 0;
                padding: 0;
                z-index: 99;
                list-style-type: none;
                /* justify-content: space-between; */
                background-color: rgb(0, 0, 0);
                /* filter: blur(5px); */
                /* display: flex; */
                top: 0;
                left: 0;
                /* width: 100%; */
                height: 4rem;
    }
        ul li a {
            /* display: block; */
            color: white;
            /* padding: 14px 3rem; */
            text-decoration: none;
            /* margin-right: auto;
            padding-left: 5rem;
            padding-right: 5rem; */
        }
    
        ul li {
            float: none;
        }
    
        ul img {
            width: 140px;
            /* height: auto; */
            /* display: block; */
            /* padding-bottom: 2rem; */
            /* padding-top: 0rem; */
        }
}