/* Ensure full height and remove default spacing */
body, html {
  margin: 0;
  padding: 0;
  height: 100%;
}

/* Center image both horizontally and vertically */
body {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: black; /* Optional: background color */
}

/* Optional: responsive styling for image */
img {
  max-width: 90vw;
  max-height: 90vh;
  width: 250px;
  height: 250px;
}