* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    height: 100%;
    font-family: 'Arial', sans-serif;
}

.image-container {
  background-image: url("ny.jpg");
  background-size: cover;
  background-position: center; /* Ensure the image center is in the middle */
  position: relative;
  width: 100vw; /* Span entire width of the viewport */
  height: 100vh; /* Span entire height of the viewport */
  overflow: hidden; /* Prevent overflow if necessary */
}

.text {
  background-color: white;
  color: black;
  font-size: 10vw;
  font-weight: bold;
  margin: 0 auto;
  padding: 60px;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  mix-blend-mode: screen;
}
