At first, I linked it in the button tag expecting it to work; it didn't so I wrapped it in a form, which also didn't work. Then, I tried onclick but that also didn't work. Also hover:pointer; doesn't work either.
Expected: Pointer cursor when hovering over the button, and send the user to contact.html (stored locally) when the button is pressed.
<button class="contact" onclick="document.location='contact.html'">
CONTACT
</button>
width: 369px;
height: 71px;
border: 0;
padding: 0;
background: #00d1ff;
border-radius: 12px;
border-color: 20px white;
font-family: Alata;
font-style: normal;
font-weight: normal;
font-size: 30px;
line-height: 71px;
text-align: center;
letter-spacing: 0.3em;
margin: 0px 0px 0px 0px;
color: #ffffff;
}
button:hover {
cursor: pointer;
}