*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background: #343F4F;
}


.article{
    display:flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background: #343F4F;
}


.wrapper{
    display: inline-flex;
}


.wrapper .static-txt{
    color:#fff;
    font-size: 60px;
    font-weight: 400;
}

.wrapper .dynamic-txts{    
    margin-left: 15px;
    height: 90px;
    line-height: 90px;
/*    background: red; */
     overflow: hidden;

}

.dynamic-txts li{
    color:#fc6d6d;
    list-style: none;
    font-size: 60px;
    font-weight: 500;
    position: relative;
    top: 0; 
    animation: slide 6s steps(4) infinite;
}

.dynamic-txts li span{
    position: relative;
}

.dynamic-txts li span::after{
    content: "";
    position: absolute;
    left: 0;
    height: 100%;
    width: 100%;
    border-left: 2px solid #fc6d6d;
    animation: typing 1.5s steps(10) infinite;
}

footer-dark{
    color:blue;
    position:fixed;
    width:100%;
    top:20px;
    background-color: white;
}

@keyframes slide {
    100%{
        top: -360px;
    }
    
}


.dynamic-txts li span{
    position: relative;
}
.dynamic-txts li span::after{
    content:"";
    position:absolute;
    left: 0;
    height: 100%;
    width: 100%;
    background: #343F4F;
    border-left: 2px solid #fc6d6d;
    animation: typing 1.5s steps(10) infinite;
}

@keyframes typing {
    100%{
        left: 100%;
        margin: 0 -35px 0 35px;
    }
    
}