/* styles.css */
html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  overflow: hidden;
}

.background-image {
  width: 100%;
  height: 100%;
  background-image: url("https://i.imgur.com/GF4QxW2.png"); /* Foto default */
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover; /* Mbush faqen */
  cursor: pointer; /* Dorezë për klikim */
  display: none; /* Fillimisht e fshehur */
}

.show {
  display: block; /* Kur shtohet klasa, shfaqet */
}
