body {
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.705), rgba(0,0,0,0.4)),
    url(../imgs/city-sunset.webp);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

main {
  padding: 3rem 0;
  height: fit-content;

  h1 {
    font-size: 300%;
    padding-bottom: 1rem;
    color: var(--l);
  }

  p {
    padding-bottom: 1rem;
    color: var(--l);
    font-size: 140%;
  }

  .cta {
    height: 2rem;
    a {
      display: inline-block;
      padding: 0.5rem 1rem;
      background-image: var(--y);
      color: var(--d);
      font-weight: 700;
      transition: all 0.1s ease-out;
      
      &:hover {
        border-bottom: 5px solid var(--b);
        translate: 0 -5px;
      }
    }
  }  
}

@media (min-width: 768px) {
  main {
    padding: 0;
    width: 100%;
    height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: center;

    h1 {
      font-size: 400%;
    }

    p {
      width: 50%;
      line-height: 2rem;
    }
  }
}