body {
  background-color: #003D31;
  height: 100%;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

h2 { color: white; }

img {
  width: 20%; /* Default size for desktops */
  max-width: 100%;
}

/* Increase image size on smaller screens */
@media (max-width: 768px) { /* Tablets and smaller */
  img {
    width: 40%; /* Make it larger on mobile */
  }
}

@media (max-width: 480px) { /* Phones */
  img {
    width: 60%; /* Even larger on smaller phones */
  }
}

