/* Reset osnovnih margina */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Postavljanje visine za html i body */
html, body {
  height: 100%;
}

/* Stil za tijelo stranice */
body {
  background-color: #160502;  /* Tamna pozadina */
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Osiguravanje responzivnosti slike */
.container img {
  max-width: 100%;
  height: auto;
  display: block;
}