* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #0f0f0f; /* change if you want white */
}

.container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.center-image {
  max-width: 80%;
  height: auto;
  border-radius: 12px; /* optional nice touch */
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .center-image {
    max-width: 90%;
  }
}

@media (max-width: 480px) {
  .center-image {
    max-width: 95%;
  }
}