#bleh {
  background-color: rgb(999 999 999 / 0.5);
}

body {
  margin: 0; /* removes default margins */
  height: 100vh; /* makes sure body fills the viewport height */
  background-image: url("images/photo-1498354178607-a79df2916198.jpg"); /* replace with your image path */
  background-size: cover; /* scales image to cover the entire screen */
  background-position: center; /* centers the image */
  text-align: center;
  background-repeat: no-repeat; /* prevents tiling */
}

p {
  color: white;
}