
#sun{
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background-color: gold;
  position: absolute;
  top: 100px;
  left: 270px;
  box-shadow: 0 0 20px 44px rgb(255, 242, 0) inset, 0px 0px 40px 32px rgb(255, 208, 0);
  animation: move 3s ;
  animation-iteration-count: infinite;
}

#sun-text{
  color: rgb(255, 149, 0);
  font-size: 40px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-weight: bolder;
 text-shadow: -3px -4px 2px rgb(255, 204, 0);
 text-align: center;
}

@keyframes move{
  0%{
    top: 120px;
    right: 50%;
  }

  25%{
    top: 15px;
    left: 25%;
  }

   50%{
    top: 10px;
    left: 50%;
  }

     75%{
    top: 100px;
    left: 75%;
  }


}

.container {
     display: flex; 
    justify-content: space-between; 
     
}

.monster-left {
    float: left;  
}

.monster-right {
    right: 20px;
}

p{
  text-align: center;
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  font-size: 32px;
}