* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}
body {
    font-family: "Poppins", sans-serif;
    background-color: black;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    margin: 0;
}
.type {
    font-family: 50px;
    font-weight: 700;
    white-space: nowrap;
    overflow: hidden;
    border-radius: 4px solid #fff;
    color: #ffff;
    animation:  typing 4s  steps(18) infinite ,blink 0.6s infinite;
    width: 500px;
}
@keyframes typing {
    0%{
        width: 0;
    }
    50% {
        width: 430px;
    }
    100% {
        width: 0;
    }
}
@keyframes blink {
    50% {
        border-color: transparent;
    }
}