/* Import Font ex:Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400..900&display=swap');

/* Style * */
*{
    margin: 0;
    padding: 0;
    font-family: "Orbitron", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
    box-sizing: border-box;
}
/* Style Body */
body{
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background: #d9d9d9;
}
/* Style Wrapper */
.wrapper{
    display: flex;
}
/* Style Text Stop */
.wrapper .text-stop{
    color: #353535;
    font-size: 60px;
    font-weight: 600;
}
/* Style Text Running */
.wrapper .text-running{
    margin-left: 15px;
    height: 70px;
    line-height: 90px;
    overflow: hidden;
}
/* Style li in Text Running */
.wrapper .text-running li{
    list-style: none;
    color: #3c6e71;
    font-size: 60px;
    font-weight: 700;
    position: relative;
    top: 0;
    animation: slide 12s steps(4) infinite
}
/* Style Animation Slide */
@keyframes slide{
    100%{
        top: -360px;
    }
}
/* Style span in li class Text Running */
.wrapper .text-running li span{
    position: relative;
    margin: 5px 0;
    line-height: 90px;
}
/* Style span::after in li class Text Running */
.wrapper .text-running li span::after{
    position: absolute;
    content: "";
    left: 0;
    height: 100%;
    width: 100%;
    background: #d9d9d9;
    border-left: 3px solid #3c6e71;
    animation: typing 3s steps(14) infinite;
}
/* Style Animation Typing */
@keyframes typing{
    40%, 60%{
        left: calc(100% + 30px);
    }
    100%{
        left: 0;
    }
}