body {
    display: flex;
    justify-content: center;
    align-items: center;
    background: url(./forestbg.png), url(./stars2.gif), linear-gradient(to bottom, black, #1c1323);
    background-size: cover, auto;
    height: 100vh;
}
#main {
    position: relative;
}
#mushl, #mushr {
    background: url(./mushrooml.png);
    width: 200px;
    height: 200px;
    background-size: cover;
    position: absolute;
    bottom: 0;
}
#mushl {
    left: -5rem;
    bottom: 3rem;
}
#mushr {
    background: url(./mushroomr.png);
    right: -5rem;
    bottom: 5rem;
    background-size: cover;
}
#witch {
    background: url(./witch.png);
    height: 400px;
    width: 200px;
    background-size: cover;
    position: absolute;
    bottom: 0;
    left: 30%;
}
.tooltip {
  position: relative;
  display: inline-block;
}
.tooltiptext {
  visibility: hidden; /* Hidden by default */
  width: 130px;
  background-color: #8A8AEE;
  color: black;
  text-align: center;
  padding: 5px 0;
  border-radius: 6px;
  position: absolute;
  z-index: 1;
  bottom: 100%;
  left: 65%;
  margin-left: -65px; /* Use half of the width (130/2 = 65), to center the tooltip */
}
.tooltiptext::after {
  content: " ";
  position: absolute;
  top: 100%; /* At the bottom of the tooltip */
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #8A8AEE transparent transparent transparent;
}
.tooltiptext {
  opacity: 0;
  transition: opacity 1s;
}
.tooltip:hover .tooltiptext {
  opacity: 1;
  visibility: visible;
}