* {
  margin: 0;
  box-sizing: border-box;
}

body {
  height: 100vh;
}

header {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: aqua;
  height: 15rem;
}

main {
  background-color: #fdf7f1;
  display: flex;
  justify-content: center;
}

section {
  display: flex;
  justify-content: center;
}

footer {
  background-color: burlywood;
  height: 15rem;
   display: flex;
  justify-content: center;
  align-items: center;
}

.droplet {
  position: absolute;
  width: 0.5rem;
  height: 0.5rem;
  background-color: rgb(45, 147, 230);
  border-radius: 50%;
  opacity: 0;
}

.delay1 {
  animation: droplets1 10s linear;

}

.delay2 {
  animation: droplets2 10s linear;
}

#droplet1 {
  top: 25%;
  left: 88%;
}
#droplet2 {
  top: 29.5%;
  left: 87%;
}
#droplet3 {
  top: 35%;
  left: 88%;
}
#droplet4 {
  top: 30%;
  left: 80%;
}
#droplet5 {
  top: 36%;
  left: 79%;
}
#droplet6 {
  top: 40%;
  left: 80%;
}

@keyframes droplets1 {
  10% {
    opacity: 1;
  }
  20% {
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  40% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  60% {
    opacity: 0;
  }
  70% {
    opacity: 1;
  }
  80% {
    opacity: 0;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes droplets2 {
  10% {
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  30% {
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  60% {
    opacity: 1;
  }
  70% {
    opacity: 0;
  }
  80% {
    opacity: 1;
  }
  90% {
    opacity: 0;
  }
  99% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

.watering-can {
  background-image: url(images/wateringcan.png);
  background-size: contain;
  background-repeat: no-repeat;
  height: 7rem;
  width: 7rem;
  padding-left: 5px;
  animation: water-can 10s linear;
}

.flower {
  background-image: url(images/flower-stage0.jpg);
  background-size: contain;
  background-repeat: no-repeat;
  animation: flower-growth 10s linear forwards;
  height: 15rem;
  width: 15rem;
  position: relative;
}

@keyframes flower-growth {
  10% {
    background-image: url(images/flower-stage0.jpg);
  }
  50% {
    background-image: url(images/flower-stage1.png);
  }
  100% {
    background-image: url(images/flower-stage2.png);
  }
}
@keyframes water-can {
  0% {
    transform: rotate(0deg);
  }
  10% {
    transform: rotate(-35deg);
  }
  99% {
    transform: rotate(-35deg);
  }
  100% {
    transform: rotate(0deg)
  }
}


button {
  height: 3rem;
  width: 10rem;
  }
  
button:hover {
  cursor: pointer;
  background-color: red;
  animation: rainbow 3s infinite linear;
  }
    
  @keyframes rainbow {
    20% {
    background-color: orange;
    }
    40% {
    background-color: yellow;
    }
    55% {
    scale: 1.5;
    }
    60% {
    background-color: green;
    }
    80% {
    background-color: blue;
    }
    100% {
    background-color: purple;
    }
    }

a {
  transition: all 0.5s linear;
  text-decoration: none;

}

a:hover {
  color: chartreuse;
  transform: skew(15deg);
  font-size: 2rem;
}
                
 /*
main {
  display: flex;
  align-items: center;
  justify-content: center;
}

img {
  width: 100px;
  transition: transform 3s;
  position: relative;
}

img:hover {
  transform: scale(7) translateY(3rem);
}

footer {
  display: flex;
  al
