/* main */
#main {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 100%;
    padding: 60px 0;
    background-image: linear-gradient(to top, rgb(6, 38, 61), black);
}

   @media (max-width: 1300px) {
    #main {
      flex-direction: column;
      padding: 0px 0;
     }
   }

#mainImg {
  width: 600px;
  height: 450px;
  padding-bottom: 60px;
}

@media (max-width: 1300px) {
    #mainImg {
      width: 500px;
      height: 400px;
     }
}

@media (max-width: 768px) {
    #mainImg {
      width: 400px;
      height: 300px;
     }
}

@media (max-width: 420px) {
    #mainImg {
      width: 320px;
      height: 260px;
     }
}

#headers {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  margin-top: 70px;
  font-family: 'Heebo', sans-serif;
  padding: 60px;
  max-width: 50%;
}

@media (max-width: 1300px) {
    #headers {
      max-width: 100%;
     }
   }

   #headers.show {
  opacity: 1;
  transform: translateY(0);
}
.show {
  opacity: 1;
  transform: translateY(0);
}

#main h1 {
    color: white;
    font-size: clamp(40px, 3vw, 80px);
    font-weight: 900;
    margin: 0;
}

#main h2 {
    color: rgb(0, 160, 184);
    font-size: clamp(28px, 3vw, 50px);
    font-weight: 900;
    margin: 0;
}

#arrowSpan {
  display: inline-block;
  animation: arrowSpan 2s infinite;
  font-size: 50px;
  font-weight: bold;
  width: 100px;
  /* fill: #FFD54A; */
  /* fill: rgb(133, 3, 129); */
  fill: rgb(182, 182, 182);
}

@keyframes arrowSpan {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}

#h2Span {
  color: white;
  font-size: clamp(28px, 3vw, 60px);
  font-weight: 900;
}

#mainImage {
  max-width: 100%;
  width: 30%;
}

   @media (max-width: 1300px) {
    #mainImage {
        width: 80%;
        margin-top: 0;
     }
   }


/* #sceneContainer {
  position: relative;
  width: 700px;
  height: 400px;
}

.illustration {
  position: absolute;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.computer {
  left: 13%;
  top: 10%;
  transform: translate(-50%, -50%) scale(1.1);
  z-index: 1;
  width: 70%;
}

.person1 {
  left: 10%;
  top: 30%;
  z-index: 2;
  width: 40%;
}

.person2 {
  left: 40%;
  top: 5%;
  z-index: 2;
  width: 50%;
}

   @media (max-width: 1300px) {
     #sceneContainer {
       width: 400px;
       height: 200px;
       margin-bottom: 120px;
     }
   }

   @media (max-width: 768px) {
     #sceneContainer {
       width: 300px;
       height: 100px;
     }
   } */

   #ctaA {
    display: block;
    text-align: center;
    border: none;
    border-radius: 50px;
    padding: 20px 150px;
    font-size: clamp(18px, 3vw, 24px);
    font-family: 'Heebo', sans-serif;
    font-weight: 700;
    cursor: pointer;
    color: white;
    margin-bottom: 20px;
    background-image: linear-gradient(to right, rgb(133, 3, 129), rgb(0, 160, 184));
    transition: transform 0.6s ease, box-shadow 0.6s ease;
}

   #ctaA:hover {
    background-image: linear-gradient(to right, rgb(0, 160, 184), rgb(133, 3, 129));
    transform: scale(1.07) translateY(-2px);
   }

      @media (max-width: 768px) {
      #ctaA {
        padding: 20px 20px;
        width: 100%;
     }
   }