.wrapper {
    overflow: hidden;
    border-radius: 50%;
    animation: spin 10s linear infinite;
}

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

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

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

body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: black;
}
