@import url('https://fonts.googleapis.com/css2?family=Inter:ital,wght@0,100..900;1,100..900&display=swap');

body {
  background-color: black;
  color: white;
  padding: 1rem;
  margin: 0;
  font-family: Inter, sans-serif;
  font-optical-sizing: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  overflow: hidden;
  height: calc(100vh - 1rem * 2); /* why? because the padding shifts it down a bit, lets just subtract the top and bottom padding size */
}

h1 {
  margin: .1;
}

.sub {
  margin: 0;
  color: #AAA;
  font-weight: 300;
}
