@import url("https://fonts.googleapis.com/css2?family=Funnel+Display:wght@300..800&display=swap");

body {
  font-family: "Funnel Display", sans-serif;
  margin: 0;
  padding: 0;
  background-color: #282a36;
  color: #f8f8f2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  min-height: -webkit-fill-available;
  min-height: 100dvh;
  background-size: cover;
  background-position: center;
}
h1 {
  font-weight: 600;
  font-size: 64px;
}
p {
  font-size: 32px;
}

.hero {
  text-align: center;
  padding: 48px;
}

@media (max-width: 600px) {
  .hero {
    padding: 24px;
  }
  h1 {
    font-size: 36px;
  }
  p {
    font-size: 24px;
  }
}
