:root{
    --prim-color: #ce77fa;
}
*,*::before,*::after{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}
a{
    text-decoration: none;
    text-align: center;
}
button{
    border: none;
    display: block;
    cursor: pointer;
}
body,html{
    height: 100%;
    width: 100vw;
}
.homepage{
    height: 100vh;
    width: 100%;
    background: linear-gradient(to top,#000000,#29004da7),url(https://images.unsplash.com/photo-1660062993695-9c81acfaceeb?q=80&w=1632&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D);
    background-size: cover;
    background-position: center;
}
.wrapper{
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 2rem;
    padding: 0 1rem;
}
.logo{
    width: min(300px,60%);
    animation: glow 1s infinite ease-in-out;
    animation-direction: alternate-reverse;
    border-radius: 50%;
}
/* .homepage_headline{
    font-size: clamp(90px,3rem,5vw);
    font-weight: 800;
    color:  #fff;
    animation: glow 1s infinite ease-in-out;
    animation-direction: alternate-reverse;
} */
.homepage_ca{
   z-index: -2;
   position: absolute;
   top: -50%;
}
.copied_text{
    background-color: #42e794;
    color: #fff;
    padding: 0.3rem 0.9rem;
    border-radius: 4px;
    box-shadow: 0 4px 8px #00000040;
    position: absolute;
    top: -30%;
    right: 50%;
    transform: translateX(50%);
    transition: all 0.2s ease-in-out;
}
.typing{
    color: var(--prim-color);
    font-size: clamp(23px,2rem,3vw);
    text-align: center;
    height: 40px;
}
.homepage_btns , .homepage_socials{
    width: min(600px,100%);
    display: flex;
    justify-content: center;
    align-items: center;

    gap: 2rem;
}
.homepage_btns > * {
    max-width: 100%;
    flex: 1 1 50%;
    padding: 0.7rem ;
    font-size: clamp(20px,1rem,2vw);
    font-weight: 700;
    border-radius: 10px;
    box-shadow: 0 4px 10px #00000040;
}
.copy_btn{
    border: 2px solid var(--prim-color);
    background-color: transparent;
    color: #fff;
}
.buy_btn{
    background-color: var(--prim-color);
    color: #fff;
}

.homepage_social_link{
    margin-top: 3rem;
    width: clamp(30px,2rem,3vw);
}
@keyframes glow {
    to{
        filter: drop-shadow(0 0 20px  var(--prim-color) );
    }
}