body {
  margin: 0;
}

.container {
  font-family: "Poppins", sans-serif;
  display: flex;
}

.left-col,
.right-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 50%;
  height: 100vh;
  font-size: 3rem;
  text-decoration: none;
}

.left-col {
  background-color: #fcfff3;
  color: #000000;
}

.right-col {
  background-color: #375517;
  color: #97d357;
}

.icon {
  font-size: 5rem;
}

p {
  margin: 1.5rem;
  text-align: center;
  line-height: 1.2;
  font-weight: 400;
}

p > span {
  font-weight: 600;
}

.arrow-left,
.arrow-right {
  margin-top: 1.5rem;
}

.arrow-left {
  animation: bounce-left-anim 3s infinite;
}

.arrow-right {
  animation: bounce-right-anim 3s infinite;
}

@media (max-width: 700px) {
  .container {
    flex-direction: column;
  }
  p {
    margin: 1.3rem;
    line-height: 1.1;
  }
  .left-col,
  .right-col {
    width: 100%;
    height: 50vh;
    font-size: 2rem;
  }
  .icon {
    font-size: 3rem;
  }
}

@media (max-height: 500px) {
  .icon {
    display: none;
  }
}

@keyframes bounce-left-anim {
  0% {
    transform: translateX(0);
  }
  20% {
    transform: translateX(0);
  }
  40% {
    transform: translateX(-10px);
  }
  50% {
    transform: translateX(-5px);
  }
  60% {
    transform: translateX(-10px);
  }
  80% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(0);
  }
}

@keyframes bounce-right-anim {
  0% {
    transform: translateX(0);
  }
  20% {
    transform: translateX(0);
  }
  40% {
    transform: translateX(10px);
  }
  50% {
    transform: translateX(5px);
  }
  60% {
    transform: translateX(10px);
  }
  80% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(0);
  }
}
