main {
  position: relative;
  width: 100vw;
  z-index: 1;
  height: fit-content;

  .mainScaleBg {
    position: absolute;
    z-index: -2;
    width: 100vw;
    overflow-x: hidden;
    overflow-y: hidden;
    

    img {
      width: 100vw;
      scale: 150%;
      overflow-y: hidden;
      overflow-x: hidden;
      display: none;
    }
  }


}


.mainContent {
  padding: 2rem;
  margin-top: 2rem;

  h1 {
    color: aliceblue;
    width: 60%;
    text-align: end;
    margin-left: auto;
  }

  p {
    padding-top: 1rem;
    width: 90%;
    text-align: end;
    margin-left: auto;
    color: aliceblue;
  }

  .ctaBtn {
    width: fit-content;
    margin-left: auto;
    display: flex;
    justify-content: end;
    gap: 1rem;
    padding-top: 2rem;
    position: relative;
    z-index: 5;

    a{
      color: aliceblue;
      background-color: var(--g);
      padding: 0.5rem;
      border-radius: 5px;
      text-decoration: none;
      font-size: 90%;
    }
  }
}

.mainImg {
  margin-left: 1rem;
  margin-right: 1rem;
  position: relative;
  
  z-index: -2;
  height: 100vdh;
  translate: 0 20%;

  img {
    width: 30vw;
    height: 30vw;
    border-radius: 50%;
    position: absolute;
    left: 0;
    z-index: 2;
    top: 50%;
    scale: 135%;
    background-color: var(--gr);
  }
}

/* mobile */
/* @media (min-width: 320px) {
 
} */

/* landscape mobile */
@media (min-width: 568px) {
  .mainContent {
  p {
    width: 60%;
  }
 }
}

/* tablet */
@media (min-width: 768px) {
  main {
    /* border: 2px solid blue; */
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100dvh;

    .mainScaleBg {
      position: absolute;
      z-index: -2;
      width: 100vw;
      overflow-x: visible;
      
  
      img {
        scale: none;
        overflow-y: visible;
        display: block;
      }
    }
  }

  .mainContent {
    width: 90%;
    /* border: 2px solid red; */
    margin-left: auto;
    margin-right: auto;

    h1 {
      width: 50%;
      text-align: left;
      font-size: 250%;
    }

    p {
      width: 30%;
      margin-right: 20%;
      text-align: left;
      line-height: 2rem;
    }

    .ctaBtn {
      width: 50%;
      justify-content: left;
      padding-top: 1.5rem;
    }
  }

  .mainImg {
    /* border: 2px solid yellow; */

    img {
      margin-left: 10%;
      translate: 0 -20%;
      scale: none;
    }
  }
}

/* desktop */
/* @media (min-width: 1024px) {
 
} */

