html, body {
  height: 100%;
}

body {
  font-family: Inter, Roboto, "Helvetica Neue", "Arial Nova", "Nimbus Sans",
    Arial, sans-serif;
  margin: 0;
  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%;
  }
}

.logo {
  position: absolute;
  top: 0;
}

.links {
  position: absolute;
  bottom: 25%;
  right: 3rem;
  display: flex;
  align-items: center;
}

.links a {
  text-decoration: none;
  margin-right: 1rem;
}

.links a svg {
  color: white;
}

.actions a:last-child {
  margin-right: 0;
}

.call-to-action {
  position: absolute;
  bottom: 25%;
  left: 3rem;
}

.button {
  margin: auto 0 auto 0;
  display: flex;
  align-items: center;
  appearance: button;
  background-color: rgba(255, 212, 92, .25);
  cursor: pointer;
  padding: 6px 12px;
  text-align: center;
  text-decoration-color: rgb(13, 110, 253);
  text-decoration-line: none;
  text-decoration-style: solid;
  text-decoration-thickness: auto;
  text-indent: 0px;
  text-rendering: auto;
  text-shadow: none;
  text-size-adjust: 100%;
  text-transform: none;
  font-size: 1.5rem;
  transition-delay: 0s, 0s, 0s, 0s;
  transition-duration: 0.15s, 0.15s, 0.15s, 0.15s;
  transition-property: color, background-color, border-color, box-shadow;
  transition-timing-function: ease-in-out, ease-in-out, ease-in-out, ease-in-out;
  user-select: none;
  vertical-align: middle;
  word-spacing: 0px;
  writing-mode: horizontal-tb;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-border-image: none;
  animation: flicker 1.5s infinite alternate;
  color: #fff;
}

@keyframes flicker {
  0%, 18%, 22%, 25%, 53%, 57%, 100% {
    text-shadow:
    0 0 4px #fff,
    0 0 11px #fff,
    0 0 19px #fff,
    0 0 40px #0fa,
    0 0 80px #0fa,
    0 0 90px #0fa,
    0 0 100px #0fa,
    0 0 150px #0fa;
  }

  20%, 24%, 55% {
    text-shadow: none;
  }
}

.button img {
  margin-right: 1rem;
}

@media (max-width: 576px) {
  .logo {
    left: 50%;
    transform: translate(-50%);
    width: 100%;
  }

  .logo img {
    width: 100%;
  }

  .links {
    bottom: 2.5rem;
    right: 50%;
    transform: translate(50%);
  }
}
