body {

  /* margin/padding 초기화 */

  margin: 0;

  padding: 0;

    /* 폰트트 */

  font-family: 'DOSGothic', Verdana, sans-serif;

  color: black;

  

  /* 배경이 화면 전체를 덮도록 한것 */

  min-height: 100vh;

  

  /* 배경 타일 적용 */

  background-image: url("bg.gif");

  background-repeat: repeat;        

  background-size: auto;

}

/*방 배경*/

.myroom-bg {

  position: absolute;

  z-index: 1; 

  top: 50%;

  left: 50%;

  transform: translate(-50%, -50%);

  

  width: 500px; 

  height: auto;

  pointer-events: none; 

  display: block;

}

/*스티커 메뉴*/

.sticker {

  position: absolute; 

  z-index: 100;

  display: block;

  cursor: pointer;

  transition: transform 0.2s ease-in-out; 

}



.sticker img {

    width: 100%;

    height: auto;

    display: block;

}

.pos1 {

  top: 38%;  

  left: 46%;

  width: 520px;

}



.pos2 {

  top: 35%;

  left: 34%;

  width: 520px;

}