﻿.side {
    width: 100%;
    overflow: hidden;
}

.typing-text {
    white-space: nowrap;
    overflow: hidden;
    border-right: .15em solid white;
    animation: typing 5s steps(40) infinite;
}

@keyframes typing {
    from {
        width: 0;
    }

    to {
        width: 92%;
    }
}
