@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@200;300;400;500;600;700&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Nunito', sans-serif;
}

body{
    background-color: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

.container{
    display: flex;
}
.static-text{
   
    text-align: center;
    color: #fff;
    font-size: 60px;
    font-weight: normal;
}

.dynamic-text{
    height: 90px;
    line-height: 90px;
    overflow: hidden;
}
.static-date{
    text-align:center ;
    color: #fff;
    font-size: small;
}
.dynamic-text li{
    list-style: none;
    color: #f59505;
    font-size: 60px;
    font-weight: 500;
    position:relative;
    top: 0;
    animation: slide 12s steps(4) infinite;
}

@keyframes slide{
    100%{
        top: -360px;
    }
}

.dynamic-text li span{
    position: relative;
    margin: 5px 0;
    line-height: 80px;
}

.dynamic-text li span::after{
    content: "";
    position: absolute;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: #000000;
    border-left: 5px solid #ffffff;
    animation: typing 3s steps(10) infinite;
}

@keyframes typing{
    40%, 60%{
        left: calc(100% + 30px);
    }
    100%{
        left: 0;
    }
}