body {
  width: 100%;
  height: fit-content;
  margin: 0;
  padding: 0;
}

.stack-area {
  width: 100%;
  height: 300vh;
  position: relavtive;
  background: white;
  display: flex;
}

.left {
  height: 100vh;
  flex-basis: 50%;
  position: sticky;
  top: 0;
  left: 0;
}

.right {
  height: 100vh;
  flex-basis: 50%;
  position: sticky;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

img {
  width: 533px;
  height: 800px;
}

/* styling for left element */

.left {
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  align-items: center;
  flex-direction: column;
}

.title {
  width: 420px;
  font-size: 100px;
  font-family: poppins;
  font-weight: 700;
  line-height: 88px;
}

.sub-title {
  width: 400px;
  font-family: poppins;
  font-size: 25px;
  margin-top: 30px;
}

.sub-title-main {
  width: 400px;
  font-family: poppins;
  font-size: 25px;
  margin-top: 30px;
}

button {
  margin-top: 20px;
  height: 100px;
  width: 400px;
  border-radius: 10px;
  font-family: poppins;
  font-size: 30px;
  font-weight: 700;
  /* color: #ffa38c; */
  color: white;
  background-color: #32cd32;
  border: 2px solid #32cd32;
  transition: background-color 0.2s, color 0.2s;
}

button:hover {
  background-color: white;
  color: #32cd32;
  border: 2px solid #32cd32;
}
