@import url('https://rsms.me/inter/inter.css');
html {
  font-family: 'Inter', sans-serif;
}

@supports (font-variation-settings: normal) {
  html {
    font-family: 'Inter var', sans-serif;
  }
}

body {
  margin: 0;
  color: white;
  background-color: black;
  box-sizing: border-box;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

h1 {
  margin: 0;
  font-size: 2.2rem;
  font-weight: 900;
  font-style: italic;
  line-height: 1;
}

@media only screen and (min-width: 48rem) {
  h1 {
    font-size: 4rem;
  }
}
