Root login should ideally be disabled due to security reasons.
To disable root login edit the sshd_config file using vi or any other editor
sudo vi /etc/ssh/sshd_config
The above command would open up the sshd_config file
Change the line
#PermitRootLogin yes to PermitRootLogin no
After making the change restart sshd
sudo systemctl restart sshd