html, body {
  height: 100vh;
}

body {
  margin: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-color: #000;
  color: #fff;
  font-family: Arial, sans-serif;
}

h1 {
  font-size: 30vw;
  margin: 0;
}

p {
  font-size: 9vw;
  margin: 0;
}


@media (min-aspect-ratio: 2/1) {
  h1 {
    font-size: 60vh;
  }

  p {
    font-size: 18vh;
  }

}