body {
  font-family: "Baloo 2", cursive;
  font-size: 10pt;
  background-image: url(./images/.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed;
  background-size: cover;
  color: brown;
  background-color: #ffffff;
  overflow: hidden;
  width: 100vw;
  height: 100vh;
}
.container-fluid {
  width: 100%;
  height: 100%;
}
.row {
  overflow: hidden;
}
h1 {
  margin-top: 10px;
  font-size: 2.5em;
  font-weight: bold;
}
h2 {
  font-size: 1.6em;
}
.plant {
  position: absolute;
  width: 100px;
  z-index: -1;
  animation: entry 1.8s ease-in-out forwards,
    swing 3s ease-in-out 1.8s infinite alternate;
}
#plant1 {
  right: 15rem;
}
#plant2 {
  right: 7rem;
}
@keyframes entry {
  0% {
    top: -200px;
  }
  30% {
    transform: scale(1.1);
  }
  60% {
    transform: scale(1.2);
  }
  80% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
    top: -5px;
  }
}
@keyframes swing {
  from {
    transform: rotate(15deg);
  }
  to {
    transform: rotate(-15deg);
  }
}
.list-group {
  box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
  margin-bottom:50px;
}
.list-group-item {
  background-color: rgba(255, 255, 255, 0.795);
  font-size: 1.5em;
  color: brown;
  transition: 0.5s;
}
.list-group-item:hover {
  font-weight: bold;
  color: brown;
  transform: scale(1, 1.2);
}
h3.list-group-item {
  color: white;
  background-color: hsla(0, 59%, 41%, 0.795);
  font-weight: bold;
  font-size: 1.25em;
  text-transform: uppercase;
  margin: 0;
  padding: 10px 15px 7px;
}
.list-group-item .icon-wrapper {
  display: inline-block;
  width: 35px;
  margin-right: 5px;
  display: inline-flex;
  vertical-align: middle;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.list-group-item .icon-wrapper i {
  font-size: 1.5em;
}
@media (max-width: 800px) {
  .plant {
    width: 70px;
  }
  #plant1 {
    right: 10rem;
  }
  #plant2 {
    right: 5rem;
  }
}
@media (max-width: 600px) {
  .container-fluid {
    width: 100vw;
    overflow: hidden;
  }
  #plant1 {
    right: 7rem;
  }
  #plant2 {
    right: 2rem;
  }
}
@media (max-width: 490px) {
  .plant {
    width: 58px;
  }
  #plant1 {
    right: 4.5rem;
  }
  #plant2 {
    right: 0.5rem;
  }
}
