  @import url('https://fonts.googleapis.com/css2?family=Archivo+Black&family=Gravitas+One&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family:  "poppins", sans-serif;
}
body{
    /* background-color: black; */
}
a{
    color: white;
    text-decoration: none;
    cursor: pointer;  
    /* font-size: larger; */
}
a:hover{
    color: green;
    
}
 .navbar>.logo{
    text-transform: uppercase;
    text-shadow: 2px 2px 2px black;
    font-weight: bold;
    letter-spacing: 1.5px;
    font-size: 20px;
} 

.navbar{
position: fixed;
gap: 20px;
left: 0;
top: 0;
width: 100%;
padding: 25px 9%;   
background-color: black; 
display: flex;
justify-content: space-around;
z-index: 100;
visibility: hidden;
opacity: 0;
animation:show-content 1.5s linear forwards ;
animation-delay: 1.2s;
}
.navbar>ul>li>.active>a:hover{
color: green;
}

@keyframes show-content{
    100%{
        visibility: visible;
        opacity: 1; 
    }
}
 .navbar>.logo{
    font-size: 30px;
    font-weight: 700;
}
.navbar>ul{
    display: flex;
    flex-direction: row;
    
    text-shadow: 2px 2px 2px black;
    justify-content: flex-end;
}
.navbar>ul>li{
margin-left: 35px;
    list-style: none;
    font-weight: lighter;
    font-size: 20px;
    letter-spacing: 1.5px;
    align-items: flex-end;
}

.navbar>ul>li>a{
    font-size: 20px;
    font-weight: 500;
display: flex;
}
.home{
    display: flex;
    align-items: center;
    gap: 50px;
    height: 100vh;
    padding: 30px 9% 0;
    color: wheat;
    visibility: hidden;
opacity: 0;
animation:show-content 1.5s linear forwards ;
animation-delay: 1s;
}
.home>.outer{
    color:white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px;
    margin-top: 50px;
}
.outer>h1{
    text-transform: uppercase;
    margin-bottom: 10px;
    font-size: 40px;
}
.outer>h2{
    display: inline-block;
    text-transform: capitalize;
    margin-bottom: 10px;
    font-size: 30px;
    }
    .outer>h2>span{
        position: relative;
        display: inline-block;
        color: transparent;
        -webkit-text-stroke: .7px green;
        animation: display-text 16s linear infinite; 
    }
    @keyframes display-text{
        25%,100%{
            display: inline-block;
        }
    }
    .home>.outer>h2>span::before{
        content: attr(data-text);
        position: absolute;
        width: 0%;
        border-right: 2px solid green;
        color: green;
        white-space: nowrap;
        overflow: hidden;
        animation: fill-text 4s linear infinite;
    }
    @keyframes fill-text{
        10%,100%{
            width:0;
        }
        70%,90%{
            width: 100%;
        }
    }
.outer>p{
    width: 60%;
    word-spacing: 1.5px;
    margin-bottom: 10px;
    line-height: 30px;
    letter-spacing: 1px;

}
.btn-sci{
    display: flex;
    align-items: center;
    box-shadow: greenyellow;
}
.btn{
     display: inline-block;
     padding: 10px 30px;
     align-items: center;
     background-color: green;
     border-radius: 40px;
     box-shadow: 10px green;

transition: .5s;
     
}
.btn:hover{
    background: transparent;
   background-color:  greenyellow;
   box-shadow: 10px solid green;
   color: black;
    box-shadow: none;
}
.sci>a{
    display: inline-flex;
    padding: 10px;
    border: 2px solid green;
    border-radius: 50%;
    font-size: 20px;
    color: white;
    margin: 0 8px;

}.sci>a:hover{
    
    background-color: green;
    color: white;
    box-shadow: none;
    transition: .5s;
    box-shadow: 2px;
}

 

.home-img>.img-box{
    position: relative;
    width: 32vw;
    height: 32vw;
    background:black;
    border-radius: 50%;
padding: 5px;
display: flex;
justify-content: center;
align-items: center;
overflow: hidden;
}
.home-img>.img-box::before,
    .home-img>.img-box::after{
    content: '';
    position: absolute;
    width: 700px;
    height: 700px;
    background:conic-gradient(transparent,transparent,transparent,green);
    transform: rotate(0deg);
    animation: rotate-border 10s linear infinite;

}
.home-img>.img-box::after{
    animation-delay: -5s;}
@keyframes rotate-border{
    10%{
        transform: rotate(360deg);

    }
}

.home-img>.img-box>.img-item{
    position: relative;
    width: 100%;
    height: 100%;
    background: black;
     z-index: 1; 
    border-radius: 50%;
    border: .1px solid black;
    display: flex;
    justify-content: center;
    overflow: hidden;
}
.home-img>.img-box>.img-item>img{
    position: absolute;
    display: block;
    width: 85%;
mix-blend-mode: lighten;
    object-fit: cover;
    top: 30px;
    margin-top: -2.5em;
}
.bars-animation>.bar{
    width: 100%;
    height: 100%;
    background: black;

    transform: translateY(-100%);
    animation: show-bars .5s ease-in forwards;
    animation-delay: calc(.1s * var(--i));
}
.bars-animation{
    position:absolute;
    width: 100%;
    height: 100%;
    display: flex;
    z-index: -1;
}@keyframes show-bars{
    100%{
        transform:translateY(0%) ;
    }
}