.container {
margin: 0 auto;
padding: 0 1rem;
}
@media (min-width: 1536px) {
.container {
padding: 0;
}
} .mouse {
width: 2rem;
height: 4rem;
border: 1px solid #fff;
border-radius: 1rem;
position: relative;
}
.mouse::before {
content: "";
width: .5rem;
height: .5rem;
position: absolute;
top: .5rem;
left: 50%;
transform: translateX(-50%);
background-color: #fff;
border-radius: 50%;
opacity: 1;
animation: wheel 2s infinite;
-webkit-animation: wheel 2s infinite;
}
@keyframes wheel {
to {
opacity: 0;
top: 3rem;
}
}
@-webkit-keyframes wheel {
to {
opacity: 0;
top: 3rem;
}
}