body {
    background-color: black;
    margin: 0;
    padding: 0;
}

.eyes {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

h1 {
    color: white;
    text-align: center;
    margin: 70px;

}

h1::before {
    content: "|";
    animation-name: typing;
    animation-duration: 4s;
    animation-iteration-count: infinite;
}

.left_eye,
.right_eye {
    background-color: white;
    width: 300px;
    height: 500px;
    border-radius: 40%;
    display: flex;
    justify-content: center;
    align-items: center;
}


.nn {
    width: 100px;
    height: 100px;
    background-color: black;
    border-radius: 50%;
    animation-name: move;
    animation-duration: 1s;
    animation-iteration-count: infinite;
}

@keyframes move {
   from{
    transform: translate(0px);
   }
   to{
    transform: translate(70px);
   }
}

@keyframes typing {
    0% {
        content: "w";
    }

    5% {
        content: "wo"
    }

    10% {
        content: "wow"
    }

    15% {
        content: "wow !!!"
    }

    20% {
        content: "wow!!! n"
    }

    25% {
        content: "wow!!! no"
    }

    30% {
        content: "wow!!! now"
    }

    35% {
        content: "wow!!! now i"
    }

    40% {
        content: "wow!!! now i c"
    }

    45% {
        content: "wow!!! now i ca"
    }

    50% {
        content: "wow!!! now i can"
    }

    55% {
        content: "wow!!! now i can s"
    }

    60% {
        content: "wow!!! now i can se"
    }

    65% {
        content: "wow!!! now i can see"
    }

    70% {
        content: "wow!!! now i can see y"
    }

    75% {
        content: "wow!!! now i can see yo"
    }

    80% {
        content: "wow!!! now i can see you"
    }

    85% {
        content: "wow!!! now i can see you."
    }

    90% {
        content: "wow!!! now i can see you.."
    }

    95% {
        content: "wow!!! now i can see you..."
    }

    100% {
        content: "wow!!! now i can see you...."
    }
}