body {
  font-family: "Amatic SC", cursive;
  background-color: #f9c9c8;
  min-height: 100vh;
}
.full-section {
  width: 100%;
  height: 100vh;
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-direction: column;
}
.section-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.text-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  width: 100%;
  text-align: center;
}
.text-wrapper h1 {
  letter-spacing: 7px;
}

.section {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
}
.bottom-wrapper {
  gap: 20px;
  /* height: 60vh; */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 95%;
}
.lottie-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

.img-wrapper {
  width: 100%;
  display: flex;
  align-items: flex-end;
}
.img-wrapper img {
  width: 100%;
  object-fit: contain;
  object-position: center;
}
@media only screen and (min-width: 1085px) {
  .text-wrapper h1 {
    font-size: 4rem;
    letter-spacing: 7px;
  }
  .section-wrapper {
    height: 100vh;
    width: 100%;
  }
  .section {
    position: absolute;
    top: 0;
    left: 0;
    background-color: #f9c9c8;
    height: auto;
  }
}
@media only screen and (min-width: 768px) {
  .img-wrapper {
    width: 100%;
    height: 100%;
  }
  .img-wrapper img {
    width: 100%;
    object-fit: cover;
  }

  .text-wrapper h1 {
    font-size: 3rem;
    letter-spacing: 5px;
  }
  .bottom-wrapper {
    height: 100%;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
  }
  .lottie-wrapper {
    justify-content: flex-end;
  }
}

.button {
  padding: 10px 15px;
  font-size: 1.4rem;
  background-color: hsl(2, 81%, 40%);
  border: none;
  color: #ffffff;
}
.button:hover {
  background-color: hsl(2, 81%, 60%);
}
/* CSS */
.button {
  font-family: inherit;
  border-width: 0;
  cursor: pointer;
  display: inline-block;
  font-weight: 700;
  letter-spacing: 5px;
  line-height: 20px;
  list-style: none;
  margin: 0;
  text-align: center;
  transition: all 200ms;
  vertical-align: baseline;
  white-space: nowrap;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
}
