body {
    background-color: thistle;
}
.col-md-4 {
    border: 1px solid hotpink;
}

img.clippy {
    position: fixed;
    bottom: 0;
    right: 0;
    animation-name: peek;
    animation-duration: 10s;
    animation-iteration-count: infinite;
}

@keyframes peek {
    0% {
        left: unset;
        right: 0;
        scale: 1;

        translate: 100%;
    }

    25% {
        translate: 0%;
    }

    50% {
        left: unset;
        right: 0;
        scale: 1;

        translate: 100%;
    }


    51% {
        left: 0;
        right: unset;
        scale: -1 1;

        translate: -100%;
    }

    75% {
        translate: 0%;
    }

    100% {left: 0;
        right: unset;
        scale: -1 1;

        translate: -100%;
    }
}