/* reset margin and padding */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Style The container for all elements */
#goodPage {
  height: 100vh;
  position: relative;
  background-color: #afcc9c;
  overflow: hidden;
}

/* title */
h2 {
  font-family: Arial;
  text-align: center;
  color: #fff;
  margin-top: 50px;
  font-size: 35px;
}

/* illustration */
#good-img {
  width: 50%;
  margin: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

/* hidding the audio player */
#good-player {
  display: none;
}

/* play button image */
#good-play {
  width: 6vw;
  position: absolute;
  bottom: 40px;
  left: 47vw;
}

/* switch style */
.switch-on {
  width: 10vw;
  position: absolute;
  bottom: 40px;
  right: 3vw;
}

/* the image inside button  */
.switch-on img {
  width: 100%;
  height: 100%;
}

/* general for all flowers */
.flower {
  width: 80px;
  height: 80px;
  position: absolute;
}

/* specific flowers pos */
.first-flower {
  top: 70px;
  left: 200px;
}

.second-flower {
  top: 250px;
  left: 100px;
}

.third-flower {
  top: 450px;
  left: 200px;
}

.fourth-flower {
  top: 70px;
  right: 200px;
}

.fifth-flower {
  top: 250px;
  right: 100px;
}

.sixth-flower {
  top: 450px;
  right: 200px;
}
