body {
  overflow: hidden;
}

@import url('https://fonts.googleapis.com/css2?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');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}
:root {
  --darkBlue: #19313e;
  --cream: #ffe4c4;
  --emerald: #40755e;
  --gold: #956d3c;
  --bronze: #634625;
}
section {
  position: relative;
  width: 100%;
  height: 100vh;
}
.box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.box2 {

  background: #4cb979;
  clip-path: polygon(0 0, 100% 0, 100% 50%, 0 50%)
}
h2 {
  font-size: 45px;
  display: flex;
  flex-direction: column;
  transform: translateY(-70%);
  text-align: center;
  animation: animate 3s ease-in-out 5;
  color: #4cb979;
}
.box2 h2 {
  color: #fff;
}
span:nth-child(2) {
  line-height: 1em;
  font-size: 2em;
}
@keyframes animate {
  0%,
  45% {
    transform: translateY(-70%);
  }
  55%,
  90% {
    transform: translateY(70%);
  }
  100% {
    transform: translateY(-70%);
  }
}


