main {
  width: 100vw;
  height: 100vh;
  background-color: var(--b);
  padding-top: 3rem;
  color: var(--l);

  .box {
    position: relative;

    width: 100%;
    height: 100%;

    .text {
      h1 {
        font-size: 250%;
        padding-bottom: 1rem;
        color: var(--d);
      }

      p {
        position: relative;
        z-index: 2;
        /* background-color: rgba(0, 0, 0, 0.692); */
        color: var(--d);
        padding: 0.5rem;
        border-radius: 5px;
      }

      .mb {
        display: block;
      }
    }

    .selfie {
      width: 250px;
      height: 65vh;
      background-color: transparent;
      position: absolute;
      bottom: 0;
      right: 0;

      img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        object-position: bottom;
      }
    }
  }
}

@media (min-width: 768px) {
  main {
    .box {
      .text {
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;

        h1 {
          font-size: 400%;
        }

        p {
          font-size: 120%;
          background-color: transparent;
        }

        .mb {
          display: none;
        }
      }

      .selfie {
        width: 400px;
        height: 80vh;
      }
    }
  }
}
