*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
:root{
    --bg-color:#1f242d;
    --seceond-bg-color:#323946;
    --main-color:#7cf03d;
    --white-color:#fff;
    --disabled-color:#fff3;

}
html{
    font-size: 62.5%;
}
body{
    color: var(--white-color);
}
header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 2rem 9%;
    background:var(--bg-color) ;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;

}
.logo{
    font-size: 3rem;
    text-decoration: none;
    color: var(--white-color);
    font-weight: 700;
    
}
nav a{
    font-size: 2rem;
    color: var(--white-color);
    text-decoration: none;
    font-weight: 500;
    margin-left: 3.5rem;
    transition: 0.5s;
}
nav a:hover,
nav a.active{
    color: var(--main-color);
}
section{
    position: absolute;
    width: 100%;
    height: 100%;
    padding: 10rem 9% 2rem;
    background: var(--bg-color);

}
.getstarted{
    height: 10px;
    width: 20px;
}
.home{
    display: flex;
    align-items: center;
    gap: 5rem;

}
.home-details h1{
    font-size: clamp(3.5rem,10vw,5.5rem);
}
.home-details h2{
    display: inline-block;
    margin-top: -1rem;
    font-size: 3.2rem;
}
.home-details h2 span{
    position: relative;
    display: inline-block;
    color: transparent;
    -webkit-text-stroke: 0.07rem var(--main-color);
    animation: display-text 16s linear infinite;
    animation-delay: calc(-4s*var(--i));
}
@keyframes display-text{
    25%,100%{
        display: none;
    }
}
.home-details h2 span::before{
    content:attr(data-text);
    position: absolute;
    width: 0;
    border-right: 0.2rem solid orangered;
    color: var(--main-color );
    overflow: hidden;
    animation: fill-text 4s linear infinite;
}
@keyframes fill-text{
    10%,100%{
        width: 0;
    }
    70%,90%{width: 100%;}
}
.home-details p{
    font-size: 1.6rem;
    margin: 1rem 0 2.5rem;

}
.home-details .allbutton{
    display: flex;
    
    align-items: center;
}
.button {
    
    display: inline-block;
    padding: 1rem 3rem;
    background:var(--main-color) ;
    border: 0.2rem solid var(--main-color);
    font-size: 1.6rem;
    color: var(--bg-color); 
    font-weight: 500;
    border-radius: 4rem;
    text-decoration: none;
    box-shadow: 0 0 1rem var(--main-color);
    transsition: 0.5s;
}
.button:hover{
    background: transparent;
    color: var(--main-color) ;
    border:  solid var(--main-color);
    box-shadow: none;
}

.startbutton span{
    color: white;
    font-weight: bold;
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-size: 14px;
}
.startbutton {
    
    display: inline-block;
    padding: 1rem 1rem;
    background:orangered ;
    
    border: 0.2rem solid var(--main-color);
    font-size: 1.6rem;
    color: var(--bg-color); 
    font-weight: 500;
    border-top-left-radius: 45px;
    border-top-right-radius: 8px;
    border-bottom-right-radius: 45px;
    
    text-decoration: none;
    box-shadow: 0 0 1rem var(--main-color);
    transsition: 0.5s;
    animation: startanim;
}
.startbutton:hover{
    background: var(--main-color);
    border: 0.2rem solid orangered;
    

}


.home-details .allbutton .social{
    margin-left: 2rem;

}
.home-details .allbutton .social a{
    display: inline-flex;
    border: .2rem solid var(--main-color);
    padding: .8rem;
    font-size: 2rem;
    color: var(--main-color);
    text-decoration: none;
    border-radius: 50%;

}
.home-details .allbutton .social a:hover{
    background: var(--main-color);
    color: var(--bg-color);
    box-shadow: 0 0 1rem var(--main-color);
}

.image-section .imagecircle{
    position: relative;
    width: 32vw;
    height: 32vw;
    border-radius: 50%;
    padding: 0.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}
.image-section .imagecircle::before,
.image-section .imagecircle::after{
    content: "";
    position: absolute;
    width: 50rem;
    height: 50rem;
    background: conic-gradient(transparent,transparent,transparent,var(--main-color));
    transform: rotate(0deg);
    animation: borderanim 10s linear infinite;

}
.image-section .imagecircle::after{
    animation-delay: -5s;
}
@keyframes borderanim{
    100%{transform: rotate(360deg);}
}
.image-section .imagecircle .image{
    position: relative;
    width: 100%;
    height: 100%;
    background: var(--bg-color);
    border-radius: 50%;
    border: 0.1rem solid var(--bg-color);
    display: flex;
    justify-content: center;
    z-index: 1;
    overflow: hidden;
}
.image-section .imagecircle .image img{
    position: absolute;
    top: 3rem;
    display: block;
    width: 85%;
    object-fit: cover;
    mix-blend-mode: lighten;
}
 
