.typewriter {
    overflow: hidden;
    /* The typwriter cursor */
    white-space: nowrap;
    /* Keeps the content on a single line */
    margin: 0 0;
    /* Gives that scrolling effect as the typing happens */
    /* Adjust as needed */
    animation: typing 1.3s steps(40, end);
}

.img-wrapper {
    overflow: hidden;
    position: relative;
}

.img-typewriter {
    position: absolute;
    top: 0;
    right: 0;
}

.rotate {
    width: 100px;
    animation: rotation 1s linear;
}

.min-vh-100 {
    position: absolute;
    top: 0;
    bottom: 0;
}


/* The typing effect */

@keyframes typing {
    from {
        width: 0
    }

    to {
        width: 100%
    }
}

@keyframes rotation {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}