@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@400;700&display=swap');

body {
  margin: 0;
  padding: 0;
  background-image: url(sp_background.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}

/* Kontejner hry */
.hra {
  position: relative;
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Kontejner postavy*/
.postava {
  position: absolute;
  width: 1700px;
  height: 520px;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.85); /* zmenšení o 15 % a vycentrování */
  transform-origin: center center; /* zmenšuje od středu */
}

/* Obrázky částí */
.cast {
  position: absolute;
  filter: grayscale(100%);
  transition: filter 0.5s ease, transform 0.3s ease;
  cursor: pointer;
  height: auto;
}

.cast.aktivni {
  filter: grayscale(0%);
  transform: scale(1.05);
}

/* Infotabulka */
.infotabulka {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: white;
  color: #333;
  padding: 30px 40px;
  border-radius: 15px;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.4);
  text-align: center;
  width: 60%;
  max-width: 500px;
  display: none;
  z-index: 100;
  font-family: "quicksand", sans-serif;
  font-optical-sizing: auto;
}

#zavrit {
  margin-top: 10px;
  background-color: #00bcd4;
  border: none;
  padding: 8px 16px;
  border-radius: 10px;
  cursor: pointer;
  color: white;
}

#zavrit:hover {
  background-color: #0098af;
}

#hlava { 
  top: 200px;
  left: 100px;
  z-index: 4;
}

#trup { 
  top: 550px;
  left: 760px;
  z-index: 2;
}

#nozky { 
  top: 620px;
  left: 410px;
  z-index: 1;
}

#ocas {
  top: 600px;
  left: 1200px; 
  z-index: 1;
}
