.rectangle {
  max-width: 100%;
}
.main {
  position: relative;
}

body {
  background: rgb(244, 242, 242);
  width: 100%;
  height: auto;
}

.main {
  background: #d3e7e7;
  background: linear-gradient(
    90deg,
    rgba(211, 231, 231, 1) 0%,
    rgba(131, 145, 210, 1) 100%
  );
  width: 80%;
  padding: 20px;
  border-radius: 20px;
  margin: 0 auto;
}
.line {
  text-align: left;
  font-size: 20px;
  font-weight: bold;
  font-family: "Lobster", sans-serif;
}
.pera1 {
  text-align: left;
  max-width: 450px;
  position: absolute;
  left: 0;
  padding: 30px;
  top: 400px;
  float: left;
}
.line2 {
  /*text-align: right;*/
  margin-top: 10px;
  margin-bottom: 30px;
  font-size: 18px;
  font-weight: bold;
  margin-right: 30px;
  font-family: "Lobster", sans-serif;
}
.pera2 {
  text-align: left;
  width: 420px;
  margin-left: 380px;
}
.rec {
  text-align: center;
  background: linear-gradient(
    to right,
    #f09699,
    #cf8a8d
  ); /* gradient rectangle */

  border-radius: 15px 0 0 15px;
  width: 780px; /* make it a horizontal bar */
  /* margin: 50px auto; /* center horizontally */
  margin-left: 50px;
}
.line3 {
  /* text-align: left;*/
  margin-top: 20px;
  margin-left: 300px;
  font-size: 18px;
  font-family: "Lobster", sans-serif;
  font-weight: bold;
}
.pera3 {
  text-align: left;
  width: 420px;
  margin-left: 400px;
  margin-top: 30px;
}
.mglass {
  transform: rotate(110deg);
  position: absolute;
  top: -160px;
  left: -80px;
  float: inline-start;
  z-index: 1;
}
/* Curved Text */
.curved-text {
  position: absolute;
  width: 500px;
  height: 500px;
  top: -20px;
  left: -10px;
  z-index: 5;
  transform: rotate(40deg);
}
.curved-text text {
  fill: #000;
  font-size: 35px;
  font-weight: bold;
  font-family: "Lobster", sans-serif;
}

.droop {
  margin-left: 200px;
  margin-top: 220px;
  z-index: 3;
  position: absolute;
  top: -100px; /* Start above the screen */
  left: 100px; /* Fixed horizontal position */
  width: 100px;
  height: 120px;
  background-image: url("your-drop.png"); /* Replace with your image path */
  background-size: contain;
  background-repeat: no-repeat;
  animation: fallDown 2s linear infinite;
}

/* Animation to fall vertically in place */
@keyframes fallDown {
  0% {
    top: 10px;
    opacity: 1;
  }
  100% {
    top: 10vh;
    opacity: 0.8;
  }
}
.insects {
  margin-left: 400px;
  transform: (60deg);
  height: 850px;
  margin-top: 100px;
}
.b1 {
  max-width: fit-content;
  align-items: flex-start;
  position: absolute;
  margin-left: -80px;
  opacity: 30%;
  margin-top: -10px;
  transform: rotate(10deg);
  float: right;
}
.mini {
  max-width: 380px;
  right: 200px;
  float: left;
  margin-top: 50px;
}

.Mglass2 {
  transform: rotate(210deg);
  width: 140px;
  position: absolute;
  z-index: 3;
  margin-left: -90px;
  margin-top: -80px;
  float: right;
}
.droop2 {
  transform: (60deg);
  position: absolute;
  z-index: 3;
  margin-left: 70px;
  margin-top: 63pc;
  position: absolute;
  top: 10px;
  left: 200px; /* You can change this to set its X position */
  width: 160px;
  height: 190px;
  background-image: url("your-drop.png"); /* Replace with your image path */
  background-size: contain;
  background-repeat: no-repeat;
  animation: fallDown2 3s linear infinite;
  opacity: 0.8;
}

/* drop2 fall animation */
@keyframes fallDown2 {
  0% {
    top: 10px;
    opacity: 1;
  }
  100% {
    top: 10vh;
    opacity: 0.8;
  }
}

.drop {
  position: absolute;
  top: -400px; /* Start above view */
  right: -100px; /* Start from right edge */
  width: 100pc;
  height: 100pc;
  background-image: url("b1.png"); /* Replace with your image */
  background-size: contain;
  background-repeat: no-repeat;
  animation: diagonalDrop 6s linear infinite;
  opacity: 40px;
}

@keyframes diagonalDrop {
  0% {
    top: -550px;
    right: -850px;
    opacity: 0.5;
  }
  100% {
    top: 700vh;
    right: 100vw;
    opacity: 0;
  }
}
