body{
    background-color: black;
    text-align: center;
}

.wrapper{
    overflow: hidden;
    border-radius: 50%;
    margin-top: 10%;
}

@keyframes bounce {
    to {translate: 0 20px;}
}

.pedro {
    animation: bounce 200ms linear infinite alternate;
}

@keyframes spin {
    to {rotate: -1turn; }
}

.wrapper{
    animation: spin 6s linear infinite;
}