*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins',sans-serif;
}
nav{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 10%;
    border-bottom: 1px solid #ccc;
    z-index: 10;
}
nav ul li{
    list-style: none;
    margin: 10px 20px;
    display: inline-block;
    font-weight: 500;
    cursor: pointer; 
}
nav .logo{
    width: 220px;
    cursor: pointer;  
}

.nav-btn{
    background: #000;
    color: #fff;
    font-size: 16px;
    border: 0;
    outline: 0;
    padding: 15px 25px;
    border-radius: 40px;
    cursor: pointer;
}
.nav-btn img{
    width: 16px;
    margin-left: 5px;
}

.header{
    width: 100%;
    min-height: 100vh;
    background: linear-gradient(#eefff9 0%, #ffccc1 49%,#dcdbff 100%);
    padding: 0 10%;
    display: flex;
    justify-content: center;
    flex-direction: column;
}
.header h1{
    margin-top: 100px;
    font-size: 13vw;
    line-height: 11vw;
}
.btn-container{
    margin-top: 20px 0;
}
.header button{
    border: 0;
    outline: 0;
    display: inline-flex;
    align-items: center;
    font-size: 18px;
    margin-right: 20px;
    cursor: pointer;
}
.btn-dark{
     background: #000;
     color: #fff;
     padding: 10px 10px 10px 30px;
     border-radius: 40px;
}
.btn-dark img{
    width: 40px;
    background: #fff;
    border-radius: 60%;
    padding: 10px;
    margin-left: 30px;
}
.btn-light{
    background: transparent;
    text-decoration: underline;
}
.btn-light img{
    width: 20px;
    margin-left: 10px;
}

.header p{
    max-width: 360px;
    font-weight: 500;
}

.user-img{
    width: 80%;
    max-width: 450px;
    position: absolute;
    right: 13%;
    bottom: 0;

}
    /* Animation for header text */

.header h1 span{
    background: linear-gradient(#000, #000);
    background-repeat: no-repeat;
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    background-size: 0%;
}
.header h1 span:first-child{
    animation: textcolor1 2s linear infinite alternate;
}
.header h1 span:last-child{
    animation: textcolor2 2s linear infinite alternate;
}
@keyframes textcolor1{
    0% {
        background-size: 0%;
    }
    4% {
        background-size: 0%;
    }
    100% {
        background-size: 100%;
    }
}

@keyframes textcolor2{
    0% {
        background-size: 0%;
    }
    4% {
        background-size: 0%;
    }
    100% {
        background-size: 100%;
    }
}
.menu-icon{
    display: none;
}



/*---------media queries--------- */


@media screen and (max-width: 600px) {
    

nav ul {    
        position: absolute;
        width: 100%;
        background: #000;
        top: 100%;
        color: #ccc;
        left: 0;
        text-align:center;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.5s ;
    }
    .nav-btn{
        display: none;
    }
    nav .logo{
        width: 150%;
    }
    nav ul li{
        margin: 10px;
        font-size: 14px;
    }
    .menu-icon{
        display: block;
        width:  30px;
    }
    .show{
        max-height: 60px;
    }
}

/*---------media header queries--------- */


@media screen and (max-width: 900px) {
    .header {
        padding: 0 ;
        min-height: auto;
    }
    .user-img{
        width: 100%;
        right: auto;
        position: relative;
        margin-top: 100px;
    }
    .header-content{
        position: absolute;
        bottom: 0;
        padding: 0 10%;
        z-index: 2;
        padding-bottom: 40px;
        background: linear-gradient(transparent,#fff);
    }
    .btn-container{
        margin-top: 5px 0;  
    }
    .header button{
        margin-right: 10px;
        font-size: 14px;
    }
    .btn-dark{
        padding: 7px 7px 7px 20px;
        margin-bottom: 10px;
        
    }
    .btn-dark img{
        width: 30px;
        margin-left: 15px;
        padding: 5px;
    }
    .btn-light img{
        width: 12px;
        margin-left: 5px;
    }
    .header h1{
        font-size: 70px;
        line-height: 65px;
        margin-bottom: 30px;
    }
}