.home-hero { margin: 40px 20px 40px; /* background: rgba(255, 255, 255, 0.1); backdrop-filter: blur(12px); */ text-align: center; } .avatar-container { width: 120px; height: 120px; margin: 0 auto; position: relative; } .avatar-container .author { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); color: white; font-size: 20px; font-weight: bold; } .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; } .card { background: rgba(255, 255, 255, 0.1); backdrop-filter: blur(12px); border-radius: 8px; padding: 20px; width: 300px; margin: 0 auto; margin-bottom: 40px; text-align: center; } @media screen and (max-width: 768px) { .home-hero { margin: 0; margin-top: 20px; } }