main {
  width: 100%;
  height: 60vh;
  position: relative;

  img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-color: var(--l);
    z-index: -1;
  }

  .box {
    padding: 1rem;
    width: 100%;
    height: fit-content;
    position: absolute;
    bottom: 0;
    h1 {
      color: var(--l);
      padding-bottom: 1rem;
    }

    a {
      width: fit-content;
      background-color: var(--d);
      display: block;
      padding: 0.5rem 3rem;
      color: var(--l);
    }
  }
}

@media (min-width: 568px) {
  main {
    width: 100%;
    height: 60vh;
    position: relative;

    img {
      position: absolute;
      width: 100%;
      height: 100%;
      background-color: var(--l);
      z-index: -1;
    }

    .box {
      padding: 0 0 2rem 4rem;
      width: 100%;
      height: fit-content;
      position: absolute;
      bottom: 0;
      h1 {
        font-size: 400%;
        padding-bottom: 1rem;
      }

      a {
        width: fit-content;
        background-color: var(--l);
        display: block;
        padding: 0.5rem 3rem;
        color: var(--d);
      }
    }
  }
}
