/* Center the image container both horizontally and vertically */
.image-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh; /* Full viewport height */
  margin: 0;
}

/* Style the centered image */
.centered-image {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* Optional: Add some basic styling to the page */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  text-align: center;
  background-color: black;
}

h1 {
  color: #333;
  margin-bottom: 20px;
}

p {
  color: #666;
  line-height: 1.6;
  margin: 10px 0;
}
