I would like to center my modal on the viewport (middle) I tried to add some css properties
.modal { position: fixed; top:50%; left:50%; }
As of Bootstrap 4 the following class was added to achieve this for you without JavaScript.
modal-dialog-centered
You can find their documentation here.
Thanks v.d for pointing out you need to add both .modal-dialog-centered to .modal-dialog to vertically center the modal.