body {
	background: #FF;
}
.container {
  display: flex;
  justify-content: center; /* Centers horizontally */
  align-items: center;     /* Centers vertically */
  height: 95vh;           /* Makes container full viewport height */
}
a img {
  display: block;
}
img {
  /* Optional: constrain image size */
  max-width: 90%;
  max-height: 90vh;
}
