
@media screen and (min-width: 768px) {
    .moving-div {
        position: sticky;
        top: 10px; /* The div will stop moving when it reaches 10px from the top */
        background: white;
        padding: 10px;
        border: 1px solid #ccc;
    }
}

