/* Dark grey background */
body {
  background-color: #2e2e2e;
  margin: 0;
  height: 100vh;
}

/* Fixed centered image */
img {
  position: fixed;   /* stays in place when scrolling */
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); /* true center */
  max-width: 90%;
  height: auto;
}

/* Style for paragraphs */
p {
  color: white;               
  text-align: center;         
  position: fixed;            
  bottom: 30px;               /* place near bottom of screen */
  left: 50%;
  transform: translateX(-50%);
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 1); /* shadow effect */
  font-size: 25px;
  font-family: Arial, sans-serif;
}