
span { 
  text-align: center;
  background-color: tomato;
  border: 10px solid yellow;
  color: white;
}

div {
  display: none;
}

span:hover {
  background-color:blue;
  font-size: 60px;
}

span:hover + div{
  display: block;
  height: 100px;
  width: 400px;
  background-color:yellow;
  font-size: 18px;
  
}

.Welcome {
  display: block;
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
}



.Darshan {
  display: block;
  position: relative;
  margin-top: -80px;
  margin-left: auto;
  margin-right: auto;
  z-index: -1;
}

.Darshan:hover {
  display: none;
  
}


body {
  background-color: #171211;
  color: black;

}