/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  width: 100%;
  height: 100%;
  background-color: #000;
  overflow: hidden; /* 🚫 Zablokuj scroll */
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Responsive image styling */
.center-image {
  max-width: 90vw;
  max-height: 90vh;
  width: auto;
  height: auto;
  cursor: pointer;
  transition: transform 0.2s ease-in-out;
}

.center-image:hover {
  transform: scale(1.02);
}