@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif
}

.externaldiv {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #121215
}

.typing::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 2px;
    height: 100%;
    background: #4FC3F7;
    animation: cursorBlink 0.8s steps(3) infinite
}

@keyframes cursorBlink {

    0%,
    75% {
        opacity: 1
    }

    76%,
    100% {
        opacity: 0
    }
}

.typing {
    position: relative;
    -webkit-box-reflect: below 1px linear-gradient(transparent, #3333)
}

.typing h2 {
    position: relative;
    color: #4FC3F7;
    letter-spacing: 5px;
    font-size: 4rem;
    overflow: hidden;
    margin-bottom: 0;
    animation: type 5s steps(11) infinite
}

@keyframes type {

    0%,
    100% {
        width: 0px
    }

    30%,
    60% {
        width: 700px
    }
}

@media(max-width: 330px) {
    .typing h2 {
        font-size: 3rem;
        animation: type 5s steps(10) infinite
    }

    @keyframes type {

        0%,
        100% {
            width: 0px
        }

        30%,
        60% {
            width: 305px
        }
    }
}