#scroll-guide {
display: flex;
justify-content: center;
align-items: center;
width: 100%; /* 부모 요소의 너비가 100%를 차지하도록 설정 */
margin: 0 auto; /* 중앙에 정렬되도록 설정 */
}
.mouse-icon {
position: relative;
width: 50px; /* 적절한 너비 설정 */
height: 80px;
border: 2px solid black; /* 가시성 확인용 테두리 */
border-radius: 50px;
}
.mouse-dot {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}