* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'px';
}

@font-face {
  font-family: 'px';
  src: url('./px_grotesk_light.ttf');
}

body {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 100vw;
}

a {
  position: fixed;
  top: 25px;
  z-index: 5;
  cursor: pointer;
}

button {
  font-size: 22px;
  padding: 10px 30px;
  background: white;
  border-radius: 50px;
  border: solid 1px black;
  cursor: pointer;
}

@media (max-width: 800px) {
  button {
    font-size: 18px;
    padding: 10px 20px;
  }
}
