body {
  background-color: black;
}

h1 {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  height: 100vh;
  font-family: "Poppins", serif;
  font-size: 100px;
  font-weight: 500;
  color: white;
}

@media (max-width: 800px) {
  h1 {
    font-size: 60px;
  }
}

@media (max-width: 500px) {
  h1 {
    font-size: 40px;
  }
}

@media (max-width: 300px) {
  h1 {
    font-size: 20px;
  }
}