.home-hero { margin: 20px 20px 40px; /* background: rgba(255, 255, 255, 0.1); backdrop-filter: blur(12px); */ text-align: center; } .avatar-container { width: 100px; height: 100px; margin: 0 auto; position: relative; } .avatar-container .author{ position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); color: white; } .avatar-container:hover .avatar { transform: rotate(360deg); left: 100%; } .avatar { position: relative; width: 100%; height: 100%; border-radius: 50%; cursor: pointer; left: 0; transform-origin: center center; transition: 0.5s transform ease-in-out, 0.5s left ease-in-out; } .time-line{ display: flex; flex-direction: column; justify-content: center; } .time-line-item { color: white; } .time-line-item.left { border-right: 1px solid white; } .time-line-item.right { border-left: 1px solid white; } @media screen and (max-width: 768px) { .home-hero { margin: 0; margin-top: 20px; } }