@import url("https://fonts.googleapis.com/css?family=Roboto:400,400i,700");
body {
  font-family: Roboto, sans-serif;
  margin: 0;
  height: 100vh;
  display: grid;
  place-items: center;
  perspective: 50vw;
  cursor: none;
  overflow: hidden;
}
.ground {
  position: absolute;
  bottom: 0;
  width: 120vw;
  height: 25%;
  transform: rotateX(45deg);
  border-radius: 50% 50% 0 0;
  background-color: #cd853f;
  background-image: url("https://www.transparenttextures.com/patterns/cartographer.png");
  z-index: -1;
  overflow: hidden;
}
.stem {
  position: absolute;
  width: 20px;
  height: 50%;
  background: linear-gradient(to top, #008000 50%, #000);
  bottom: 5%;
  z-index: -1;
}
.stem:before {
  content: '';
  width: 80px;
  height: 80px;
  border-radius: 75% 5%;
  background: linear-gradient(to top right, OliveDrab, #008000);
  position: absolute;
  top: 50%;
  left: -70px;
  transform: scaleY(-1);
}
.stem:after {
  content: '';
  width: 80px;
  height: 80px;
  border-radius: 75% 5%;
  background: linear-gradient(to top right, OliveDrab, #008000);
  position: absolute;
  top: 65%;
  left: 10px;
  transform: scale(-1);
}
.bug {
  position: absolute;
  width: 36px;
  height: 36px;
  background: #ffd700;
  top: 20px;
  left: 20px;
  animation: shine 20s linear infinite;
  box-shadow: 0 0 50px 20px #ffd700;
  filter: blur(3px);
  z-index: -3;
}
.bug:after {
  content: '';
  width: 36px;
  height: 36px;
  background: radial-gradient(circle, #ffa500, #ffd700);
  transform: rotate(45deg);
  position: absolute;
  left: 0px;
  top: 0px;
}
.card {
  background: radial-gradient(circle, #cd853f 30%, #a0522d 32%, #ff4500 34%, #ffa500, #ffd700 60%, #ff0);
  clip-path: polygon(15% 0%, 40% 0%, 50% 5%, 60% 0%, 85% 0%, 100% 15%, 100% 40%, 95% 50%, 100% 60%, 100% 85%, 85% 100%, 60% 100%, 50% 95%, 40% 100%, 15% 100%, 0% 85%, 0% 60%, 5% 50%, 0% 40%, 0% 15%);
  background-size: 300px 300px;
  box-shadow: 1px 1px 4px rgba(0,0,0,0.1);
  border-radius: 5px;
  width: 300px;
  height: 300px;
  display: grid;
  flex-direction: column;
  text-align: center;
  position: absolute;
}
.card h2 {
  margin: 0;
  padding: 1rem 1rem 0.25rem 1rem;
}
.card .title {
  padding: 0.25rem 1rem;
}
.card .desc {
  font-size: 0.75rem;
  padding: 0;
  order: 99;
  padding: 0.25rem 2rem 2rem;
}
.card .actions {
  order: 100;
  padding: 0.5rem 1rem;
}
.card svg {
  width: 150px;
  height: 125px;
  margin: 0 auto;
  padding: 1rem;
}
.flower {
  width: 300px;
  height: 50vh;
  position: absolute;
  bottom: 25%;
  left: calc(50% - 150px);
  transform-origin: bottom center;
  filter: blur(3px);
}
.card2 {
  background: #630;
  clip-path: polygon(15% 0%, 40% 0%, 50% 5%, 60% 0%, 85% 0%, 100% 15%, 100% 40%, 95% 50%, 100% 60%, 100% 85%, 85% 100%, 60% 100%, 50% 95%, 40% 100%, 15% 100%, 0% 85%, 0% 60%, 5% 50%, 0% 40%, 0% 15%);
  background-size: 300px 300px;
  border-radius: 5px;
  width: 300px;
  height: 300px;
  display: flex;
  flex-direction: column;
  text-align: center;
  position: absolute;
  left: calc(50% - 150px);
  top: calc(-50%);
}
.stem2 {
  position: absolute;
  width: 20px;
  height: 50vh;
  background: #630;
  bottom: 0%;
  left: calc(50% - 10px);
  z-index: -1;
  transform-origin: bottom center;
}
.ant {
  position: absolute;
  left: -21px;
  top: 85%;
  z-index: -1;
  animation: walk 60s linear infinite;
}
.ant .body {
  width: 15px;
  height: 5px;
  background: #000;
  border-radius: 25%;
  animation: bounce 0.75s linear infinite;
}
.ant .body:after {
  content: '';
  width: 100%;
  height: 3px;
  background: linear-gradient(to right, #000 50%, transparent 50%);
  background-size: 3px 3px;
  position: absolute;
  top: 100%;
  animation: wa 2s linear infinite;
}
.ant:nth-child(2) {
  top: 96%;
  left: 101%;
  animation: walkLeft 60s linear 5s infinite;
}
@-moz-keyframes shine {
  100% {
    transform: rotate(360deg);
  }
}
@-webkit-keyframes shine {
  100% {
    transform: rotate(360deg);
  }
}
@-o-keyframes shine {
  100% {
    transform: rotate(360deg);
  }
}
@keyframes shine {
  100% {
    transform: rotate(360deg);
  }
}
@-moz-keyframes bounce {
  50% {
    transform: translateY(50%);
  }
}
@-webkit-keyframes bounce {
  50% {
    transform: translateY(50%);
  }
}
@-o-keyframes bounce {
  50% {
    transform: translateY(50%);
  }
}
@keyframes bounce {
  50% {
    transform: translateY(50%);
  }
}
@-moz-keyframes walk {
  100% {
    left: 101%;
  }
}
@-webkit-keyframes walk {
  100% {
    left: 101%;
  }
}
@-o-keyframes walk {
  100% {
    left: 101%;
  }
}
@keyframes walk {
  100% {
    left: 101%;
  }
}
@-moz-keyframes walkLeft {
  100% {
    left: -21px;
  }
}
@-webkit-keyframes walkLeft {
  100% {
    left: -21px;
  }
}
@-o-keyframes walkLeft {
  100% {
    left: -21px;
  }
}
@keyframes walkLeft {
  100% {
    left: -21px;
  }
}
@-moz-keyframes wa {
  100% {
    background-position: -100% 0%;
  }
}
@-webkit-keyframes wa {
  100% {
    background-position: -100% 0%;
  }
}
@-o-keyframes wa {
  100% {
    background-position: -100% 0%;
  }
}
@keyframes wa {
  100% {
    background-position: -100% 0%;
  }
}