/*
  Use the following to include this css file
  
*/
p {
  color: blue;
}

#tree {
  position: absolute;
  top: -12.5vw;
  left: 4vw;
  width: 34vw;
  height: auto;
  z-index: 100; /* front layer */
  pointer-events: none;
}

#treestump {
  position: absolute;
  top: -12.5vw;
  left: 4vw;
  width: 34vw;
  height: auto;
  z-index: 1; /* front layer */
  pointer-events: none;
}

#outtybox {
  position: absolute;
  top: 9vw;
  left: 58.3vw;
  width: 6vw;
  height: 6vw;   /* match your background height */
  z-index: 1;     /* above bg, below tree if needed */
  background: red;
  opacity: 0;
  cursor: pointer;
}

#outtymeat {
  position: absolute;
  top: 15vw;
  left: 58.3vw;
  width: 6vw;
  height: auto;
  z-index: -1; /* behind tree, in front of bg */
  transform: scaleX(-1);
  filter: brightness(70%) contrast(120%);
  opacity: 0;
}
