main {
  padding: 2rem 0;
  .deskImg {
    display: none;
  }

  .box {
    position: relative;

    img {
      position: absolute;
      top: 0;
      left: 0;
      z-index: -1;
      opacity: 0.7;
    }

    h1 {
      padding-bottom: 4rem;
    }

    .btns {
      padding-top: 1rem;
      width: 100%;
      display: flex;
      justify-content: left;
      gap: 2%;
      align-items: center;

      a {
        padding: 0.5rem 1rem;
        background-color: var(--y);
        color: var(--d);
        font-weight: 600;
      }
    }
  }
}

@media (min-width: 768px) {
  main {
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;

    .box {
      h1 {
        font-size: 300%;
        padding-bottom: 2rem;
      }
    }
  }
}

@media (min-width: 768px) {
  main {
    position: relative;
    .deskImg {
      display: block;
      position: absolute;
      width: 50%;
      top: 0;
      right: 0;
    }

    .box {
      img {
        display: none;
      }
    }
  }
}