const divider = document.createElement('div');divider.style.width = '400px';divider.style.height = '2px';divider.style.backgroundColor = 'rgba(128, 128, 128, 0.5)';divider.style.borderRadius = '1px';divider.style.boxShadow = '0 0 2px rgba(0, 0, 0, 0.5)';document.body.appendChild(divider);