#secret-garden a { text-decoration: none; }
#secret-garden { box-shadow: 0 0 0 1px var(--art-frame); }

.art  {
  margin-left: 20px;
  transform: rotate(2deg);
}

.art:hover { transform: rotate(0deg); }

.picture-wire {
  margin-left: 50px;
  line-height: 13px;
}

.earth {
  bottom: 0;
  left: 0;
  background-color: olive;
  height: 4px;
  width: 400px;
}

#secret-garden {
  background-image: linear-gradient(to bottom, azure, azure, white, lavenderblush);
  margin-top: -25px;
  height: 200px;
  width: 400px;
  border: 1px solid black;
  display: block;
  position: relative;
  font-family: monospace;
  text-decoration: none;
  color: black;
  overflow: hidden;
}

#secret-garden > * {
  position: absolute;
}

#secret-garden *:hover {
  cursor: crosshair;
}

.turtle {
  z-index: 40000;
  left: 50%;
  bottom: 0;
  cursor: crosshair;
}

.turtle marquee {
  font-size: 20px;
}

.turtle .say {
  font-size: 12px;
  position: absolute;
  left: -9999px;
  bottom: 0;
}

.turtle:hover .say {
  cursor: help;
  left: -30px;
  display: block;
}

.rocks {
  height: 20px;
  line-height: 20px;
  bottom: 0px;
  text-wrap: nowrap;
  color: darkgray;
  bottom: 1px;
}

.rain {
  font-size: 6px;
  color: #bbb;
  top: -24px;
  left: 1px;
}

.rain-2 {
  left: 200px;
}

.rain-3 {
  top: -50px;
  left: 100px;
}

.rain-4 {
  top: -50px;
  left: 300px;
}

.rain-5 {
  top: -150px;
  left: 50px;
}

.rain-6 {
  top: -150px;
  left: 350px;
}

.tree {
  z-index: 999;
  font-size: 64px;
  line-height: 64px;
  bottom: 1px;
  left: 0;
}

.tree-2 {
  font-size: 96px;
  line-height: 96px;
  bottom: 1px;
  left: -150px;
  width: 550px;
}

.mountain {
  font-size: 136px;
  line-height: 136px;
  bottom: 3px;
  left: 0;
  height: 100px;
}

.mountain-2 {
  left: -30px;
  font-size: 176px;
}

.sig {
  color: var(--color);
  text-shadow: 1px 1px 2px var(--backgroun);
  font-weight: bold;
  font-family: "Comic Sans MS", "Comic Sans", cursive;
  font-size: 9px;
  bottom: 5px;
  right: 8px;
  opacity: 0.7;
}

.sun {
  font-size: 40px;
  top: 10px;
  right: 45px;
  animation: spin 30s linear infinite;
  transform-origin: center center;
}

.moon {
  font-size: 30px;
  top: 30px;
  right: 55px;
  display: none;
  opacity: .8;
}

.sun-cloud {
  color: black;
  font-size: 50px;
  top: 10px;
  right: 30px;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.bird {
  top: 0;
  left: 0;
  text-decoration: none;
  color: black;
  font-size: 14px;
  z-index: 10000;
}

@media (prefers-color-scheme: dark) {
  #secret-garden {
    color: var(--color);
    background-image: linear-gradient(to bottom, black, midnightblue);
  }
  .say { opacity: 0.5; }
  .moon { display: block; }
  .sun, .sun-cloud { display: none; }
  .cloud:nth-child(3n)   { opacity: .1; }
  .cloud:nth-child(3n+1) { opacity: .3; }
  .cloud:nth-child(3n+2) { opacity: .4; }
}

body.dark #secret-garden {
  color: var(--color);
  background-image: linear-gradient(to bottom, black, midnightblue);
}

body.dark .say { opacity: 0.5; }
body.dark .moon { display: block; }
body.dark .sun, body.dark .sun-cloud { display: none; }
body.dark .cloud:nth-child(3n)   { opacity: .1; }
body.dark .cloud:nth-child(3n+1) { opacity: .3; }
body.dark .cloud:nth-child(3n+2) { opacity: .4; }

body.light #secret-garden {
  color: black;
  background-image: linear-gradient(to bottom, azure, azure, white, lavenderblush);
}

body.light .say { opacity: 1; }
body.light .moon { display: none; }
body.light .sun, body.light .sun-cloud { display: block; }
body.light .cloud:nth-child(3n)   { opacity: 1; }
body.light .cloud:nth-child(3n+1) { opacity: 1; }
body.light .cloud:nth-child(3n+2) { opacity: 1; }
