 body, html {
      margin: 0;
      padding: 0;
      height: 100%;
      width: 100%;
    }

    /* Full-page container */
    .full-page {
      height: 100vh;
      width: 100vw;
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
    }

    /* Desktop image by default */
    .full-page {
        background-image: url("../../assets/images/banner.jpg");
    }

    /* Mobile image */
    @media (max-width: 768px) {
      .full-page {
          background-image: url("../../assets/images/banner.jpg");
      }
    }