onClick on button pops up a registration form. the problem is that I need to do it only when the screen size is 1440px and more.
<a href="#" class="button"onmousedown="viewForm()">start</a>
function viewForm(){
document.getElementById("form").style.display = "block";
};