.background{
    background-color: #202124;
    height: 100vh;
}
.holder-name{
    font-family: 'Poppins', sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 32px;
    line-height: 40px;
    color: #9333ea;

}
.welcome {
    font-family: 'Poppins', sans-serif;
    font-style: normal;
    font-weight: 600;
    line-height: 32px;
    font-size: 34px;
    color: #ffffff;
}
.animated-text {
    font-family: 'Poppins', sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 24px;
    color: #ffffff;
}
.font-bold{
    font-family: 'Luckiest Guy', cursive;
}
.bootom-nav-icon{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 480px;
}
div ul li a:hover{
    text-decoration: 3px underline #9333ea;
    /* transition: all 3s step-end; */
}

/* ===== Text animation ===== */
.body{
    margin: 0;
    padding: 0;
    /* background-color: #2f3542; */
    color: #fff;
    height: 9vh;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'poppins' sans-serif;
}
.animated-text {
    font-family: 'Poppins', sans-serif;
    font-size: 28px;
    font-weight: 600;
    min-width: 280px;
}
.animated-text span {
    position: relative;
}
.animated-text span::before {
    content: "HTML";
    color: #9333ea;
    animation: words 20s infinite;
    /* animation: words 8s infinite; */
    /* position: sticky; */
    /* overflow: hidden; */
}
.animated-text span::after {
    content: "";
    position: absolute;
    width: calc(100% + 8px);
    height: 100%;
    background-color: #202124;
    border-left: 2px solid #ffffff;
    right: -8px;
    animation: cursor .8s infinite, typing 20s steps(14) infinite;
    /* animation: cursor .8s infinite, typing 8s steps(14) infinite; */
}
@keyframes cursor {
    to{
        border-left: 2px solid #ff7f5000;
    }
}
@keyframes words {
    0%,20% {
        content: "HTML";
    }
    21%,40% {
        content: "CSS";
    }
    41%,60% {
        content: "JAVASCRIPT";
    }
    61%,80% {
        content: "PHP";
    }
    81%,100% {
        content: "REACT JS";
    }
}
@keyframes typing {
    10%,15%,30%,35%,50%,55%,70%,75%,90%,95%{
        width: 0;
    }
    5%,20%,25%,40%,45%,60%,65%,80%,85%{
        width: calc(100% + 8px);
    }
}