body{
    width: 100%;
    min-height: 100vh;
    background-image: url('images/cuarto.jpg');
    background-repeat: repeat;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
  }

#monito{
  position: absolute;
  left: 1%;
  top: 0.5em;
}
.sticker:hover{
  cursor: pointer;
  transition: 0.2s;
  transform: scale(1.1) rotate(5deg); 
}


#gatitos{
  
  position: absolute;
  right: 40%;
  top: 35%;
}
#gatitos img{
  z-index: 101;
  height: 15em;
}
.overlay{
  color: pink;
  z-index: 100;
  position: fixed;
  right: 45%;
  top: 50%;
  opacity: 0;
  transition: opacity 0.3s;
}

.sticker:hover .overlay {opacity: 1;}



#lamp{
  position: absolute;
  top: 20%;
  right: 25%;
}
#lamp img{
   width: 15em;
   
}

#table img{
  z-index: -1;
  position: absolute;
  width: 25em;
  top: 50%;
  right: 25%;
}

#window img{
  z-index: -2;
  position: absolute;
  height: 30em;
  top: 5%;
  right: 30%;
}

#shelf1 img{
  z-index: -1;
  position: absolute;
  top: 0%;
  left: 15%;
  height: 13em;
  width: auto;
}


#door{
  z-index: 1;
  position: absolute;
  top: 35%;
  left: 15%;
  border-top: rgb(223, 224, 202) ridge;
}

#door img{
  width: 20em;
}

@media (max-width: 768px) {
 #gatitos {
 right: 10%;
 top: 30%;
 }
 #gatitos img {
 height: 8em;
 }

 #lamp {
 top: 15%;
 right: 5%;
 }
 #lamp img {
 width: 8em;
 }

 #table img {
 width: 12em;
 top: 55%;
 right: 5%;
 }

 #window img {
 height: 15em;
 top: 5%;
 right: 5%;
 }

 #shelf1 img {
 height: 6em;
 top: 0%;
 left: 5%;
 }

 #door {
 top: 40%;
 left: 5%;
 }
 #door img {
 width: 10em;
 }

 #monito {
 left: 2%;
 top: 0.5em;
 }
 #monito img {
 width: 4em;
 }
}