* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: rgb(51, 121, 44);
  background: radial-gradient(circle, rgba(51, 121, 44, 1) 2%, rgba(226, 212, 11, 1) 45%, rgba(51, 121, 44, 1) 80%);
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow-x: hidden;
}

@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,200..800&family=Jost:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');




.main_div {
  text-align: center;
}

.main_div img:first-child {
  width: 260px !important;
}

.main_div h2 {
  font-family: "Jost", sans-serif;
  font-size: 56px;
  font-weight: 700;
  text-transform: uppercase;
  color: #33792c;
}

.main_div p {
  font-size: 21px;
  color: #fff;
}

.main_div h1 {
  font-size: 130px;
  text-align: center;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 0 10px #fcdf17, 0 0 20px #fcdf17, 0 0 80px #fcdf17, 0 0 120px #fcdf17;
  animation: animate .5s linear infinite;
}
.main_div a button {
    padding: 8px 20px;
    border: 2px solid white;
    background-color: #33792c;
    color: white;
}
.main_div a button:hover {
    background-color: #fcdf17;
    color: #000;
}
@keyframes animate {
  0% {
    opacity: 1;
  }

  30% {
    opacity: 1;
  }

  40% {
    opacity: 0.5;
  }

  50% {
    opacity: 1;
  }

  100% {
    opacity: 1;
  }
}

@keyframes bounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-20px);
  }
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.2);
  }
}

@keyframes shake {

  0%,
  100% {
    transform: translateX(0);
  }

  25% {
    transform: translateX(-10px);
  }

  75% {
    transform: translateX(10px);
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.icon_1 {
  position: absolute;
  top: 20%;
  left: 10%;
  width: 70px;
  height: 70px;
  object-fit: cover;
  animation: bounce 2s infinite ease-in-out;
}

.icon_2 {
  position: absolute;
  top: 70%;
  left: 80%;
  width: 70px;
  height: 70px;
  animation: pulse 1.5s infinite ease-in-out;
  object-fit: cover;
}

.icon_4 {
  position: absolute;
  top: 13%;
  left: 90%;
  width: 70px;
  height: 70px;
  animation: float 2.5s infinite ease-in-out;
  object-fit: cover;
}

.icon_5 {
  position: absolute;
  top: 80%;
  left: -2%;
  width: 60px;
  height: 60px;
  object-fit: cover;
  animation: float 2.5s infinite ease-in-out;
}

@media screen and (max-width: 600px) {

  .icon_1,
  .icon_2,
  .icon_4,
  .icon_5 {
    width: 40px;
    height: 40px;
  }

  .icon_2 {
    top: 90%;
    left: 80%;
  }

  .main_div img:first-child {
    width: 160px !important;
  }

  .main_div h2 {
    font-size: 32px;
    text-transform: uppercase;
    color: #fff;
  }

  .main_div p {
    font-size: 18px;
    color: #fff;
    font-weight: 500 !important;
  }

  .main_div h1 {
    font-size: 80px;
    text-align: center;
    text-transform: uppercase;
    color: #fff;
    text-shadow: 0 0 20px #fcdf17, 0 0 20px #fcdf17, 0 0 80px #fcdf17, 0 0 120px #fcdf17;
    animation: animate .5s linear infinite;
  }


}