h2 {
  font-size: 5vw;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  top: 28%;
  font-family: 'NewYork';
  font-weight: normal;
}

h3 {
  font-size: 1.1vw;
  font-family: 'Poppins';
  font-weight: normal;
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  top: calc(28% + 6vw);
}


body {
  background-color: #000000;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow-x: hidden;
  min-height: 100vh;
}

body::after {
  content: "";
  background-size: cover;
  opacity: 0.15;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
}

@media only screen and (max-width: 1000px) {
	
	h2 {
		font-size: 12vw;
	}

	h3 {
		top: calc(28% + 15vw);
		font-size: 3vw;
	}
  

}