@import url('https://fonts.googleapis.com/css2?family=PT+Mono&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Mohave:ital,wght@0,300..700;1,300..700&display=swap');

.pt-mono-font {
  font-family: "PT Mono", monospace;
  font-weight: 400;
  font-style: normal;
}

.mohave-font {
  font-family: "Mohave", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}

* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

body {
  font-family: monospace;
  letter-spacing: 5px;
  font-size: 16px;
}

p {
  margin: 10px 0px; 
}

a:hover {
  background-color: black;
  color: white;
}

