SHOWING: First 60
a#45,107,501textxverse#32,241,850text* {
margin: 0;
padding: 0;
position: relative;
}
body {
display: flex;
justify-content: center;
align-items: center;
background-color: #ff5500;
height: 100vh;
width: 100vw;
}
#container {
overflow: hidden;
animation: bounce 5s ease-in-out infinite;
}
img {
display: none;
position: absolute;
top: 0;
left: 0;
width: 100%;
}
@keyframes bounce {
0% {
transform: translateY(-5%);
}
50% {
transform: translateY(5%);
}
100% {
transform: translateY(-5%);
}
}
#14,054,762textI am Roman#14,023,705text