#sentence {
    position: fixed;
    margin: 0;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    z-index: 9999999;
    text-align: center;
    font-size: 25px;
    font-weight: bold;
    font-family: Arial, sans-serif;
    white-space: nowrap;
    color: rgb(0, 0, 0);
    background-color: white;
    padding: 4px 8px;
}
div.cursors div{
  position: fixed;
  top: 300px;
  left: 300px;
  width: 130px;
  height: 25px;
  padding: 2px 4px;
  font-size: 10px;
  font-weight: bold;
  font-family: Arial, sans-serif;
  color: black;
  background-color: white;
  pointer-events: none;
  z-index: 9999999;
}

body {
  margin: 0;
  height: 100vh;
  overflow: hidden;
  background:linear-gradient(
      to bottom,
      rgb(0, 0, 0) 0%,
      rgb(147, 147, 147) 65%,
      rgb(0, 0, 0) 65%,
      rgb(0, 0, 0) 100%
    ) 0 0 / 100% 100% no-repeat; ;
  z-index: -999;
}
body:has(.questionmark){
  position: static;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  margin: 0;
  z-index: -10;
  border-radius: 0;
  background:
  repeating-linear-gradient(
    to right,
    black 0px,
    black 15px,
    white 15px,
    white 30px
  ) 0 0 / 100% 65% no-repeat,
  repeating-linear-gradient(
    to bottom,
    black 0px,
    black 20px,
    white 20px,
    white 40px
  ) 0 100% / 100% 35% no-repeat;
}

/* tigers in the field*/
body:has(.tigers){
  position: static;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  margin: 0;
  z-index: 0;
  border-radius: 0;
  background:
  linear-gradient(
    to bottom,
    rgb(22, 201, 255) 0%,
    rgb(22, 201, 255) 65%,
    rgb(22, 255, 100) 65%,
    rgb(22, 255, 100) 100%
  ) 0 0 / 100% 100% no-repeat;
}

/* non-specific forest */
body:has(.forest) {
  position: static;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  margin: 0;
  z-index: 0;
  border-radius: 0;
  background:
  linear-gradient(
      to bottom,
      rgb(255, 81, 46) 0%,
      rgb(255, 81, 46) 65%,
      rgb(0, 0, 0) 65%,
      rgb(0, 0, 0) 100%
    ) 0 0 / 100% 100% no-repeat;
}

/* specific forest */
body:has(.the + .forest) {
  position: static;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  margin: 0;
  z-index: 0;
  border-radius: 0;
  background:
  linear-gradient(
      to bottom,
      rgb(0, 82, 247) 0%,
      rgb(0, 82, 247) 65%,
      rgb(86, 51, 19) 65%,
      rgb(86, 51, 19) 100%
    ) 0 0 / 100% 100% no-repeat;
}


/* mysterious forest */
body:has(.questionmark + .forest) {
  position: static;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  margin: 0;
  z-index: 0;
  border-radius: 0;
  background:
  linear-gradient(
    to bottom,
    rgb(23, 0, 69) 0%,
    rgb(23, 0, 69) 65%,
    rgb(151, 0, 220) 65%,
    rgb(151, 0, 220) 100%
  ) 0 0 / 100% 100% no-repeat;
}
body:has(.the + .questionmark + .forest) {
  position: static;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  margin: 0;
  z-index: 0;
  border-radius: 0;
  background:
  linear-gradient(
    to bottom,
    rgb(23, 0, 69) 0%,
    rgb(23, 0, 69) 65%,
    rgb(151, 0, 220) 65%,
    rgb(151, 0, 220) 100%
  ) 0 0 / 100% 100% no-repeat;
}


/* forest made of butter */
body:has(.butter + .forest) {
  position: static;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  margin: 0;
  z-index: 0;
  border-radius: 0;
  background:
  linear-gradient(
    to bottom,
    rgb(255, 255, 255) 0%,
    rgb(255, 255, 255) 65%,
    rgb(176, 170, 0) 65%,
    rgb(176, 170, 0) 100%
  ) 0 0 / 100% 100% no-repeat;
}


/* forest that resembles butter */
body:has(.butter + .like + .forest) {
  position: static;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  margin: 0;
  z-index: 0;
  border-radius: 0;
  background:
  linear-gradient(
    to bottom,
    rgb(255, 255, 255) 0%,
    rgb(255, 255, 255) 65%,
    rgb(176, 170, 0) 65%,
    rgb(176, 170, 0) 100%
  ) 0 0 / 100% 100% no-repeat;
}


/* forest where tigers dwell */
body:has(.tigers + .forest) {
  position: static;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  margin: 0;
  z-index: 0;
  border-radius: 0;
  background:
  linear-gradient(
    to bottom,
    rgb(0, 82, 247) 0%,
    rgb(0, 82, 247) 65%,
    rgb(86, 51, 19) 65%,
    rgb(86, 51, 19) 100%
  ) 0 0 / 100% 100% no-repeat;
}


/* forest that resembles tigers */
body:has(.tigers + .like + .forest){
  position: static;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  margin: 0;
  z-index: 0;
  border-radius: 0;
  background:
  linear-gradient(
    to bottom,
    rgb(22, 201, 255) 0%,
    rgb(22, 201, 255) 65%,
    rgb(22, 255, 100) 65%,
    rgb(22, 255, 100) 100%
  ) 0 0 / 100% 100% no-repeat;
}
body:has(.the + .questionmark + .butter + .forest) {
  position: static;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  margin: 0;
  z-index: 0;
  border-radius: 0;
  background:
  linear-gradient(
    to bottom,
    rgb(69, 125, 255) 0%,
    rgb(69, 125, 255) 65%,
    rgba(255, 225, 196) 65%,
    rgba(255, 225, 196) 100%
  ) 0 0 / 100% 100% no-repeat;
}
body:has(.the + .questionmark + .butter + .like + .forest) {
  position: static;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  margin: 0;
  z-index: 0;
  border-radius: 0;
  background:
  linear-gradient(
    to bottom,
    rgb(69, 125, 255) 0%,
    rgb(69, 125, 255) 65%,
    rgba(255, 225, 196) 65%,
    rgba(255, 225, 196) 100%
  ) 0 0 / 100% 100% no-repeat;
}
body:has(.the + .questionmark + .tigers + .forest) {
  position: static;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  margin: 0;
  z-index: 0;
  border-radius: 0;
  background:
  linear-gradient(
      to bottom,
      rgb(0, 82, 247) 0%,
      rgb(0, 82, 247) 65%,
      rgb(86, 51, 19) 65%,
      rgb(86, 51, 19) 100%
    ) 0 0 / 100% 100% no-repeat;
}
body:has(.the + .questionmark + .tigers + .like + .forest) {
  position: static;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  margin: 0;
  z-index: 0;
  border-radius: 0;
  background:
  linear-gradient(
      to bottom,
      rgb(0, 190, 224) 0%,
      rgb(0, 190, 224) 65%,
      rgb(255, 0, 191) 65%,
      rgb(255, 0, 191) 100%
    ) 0 0 / 100% 100% no-repeat;
}
.tigers + .do + .melt + .like + .butter + .in + .the + .forest:not(:has(+ .questionmark)) {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  margin: 0;
  z-index: 999999;
  border-radius: 0;
  background:black;
}
.do + .tigers + .melt + .like + .butter + .in + .the + .forest + .questionmark {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  margin: 0;
  z-index: 999999;
  border-radius: 0;
  background:black;
}

