/* Text Elements */

h1.heading-1 {
  float: left;
  clear: none;
  padding-left: 10%;
  font-size: 18px;
}

h1.heading-2 {
  float: left;
  margin-left: 10%;
  font-size: 18px;
}

h1.heading-3 {
  color: #fff;
  text-align: center;
}

/* Layout Elements */

.container.container-1 {
  display: grid;

  grid-template-columns: 1fr;
  grid-template-rows: repeat(2 , minmax(200px, auto));
  grid-template-areas: 'gauche' 'droite';
}

.container.container-2 {
  background-color: #00f;
}

.link-container.link-container-1 {
  min-width: 10px;
  width: auto;
  border-width: .0625rem;
  border-style: solid;
  background-image: url('../camera.jpg');
  background-attachment: local;
  background-position: center center;
  background-clip: border-box;
  background-origin: padding-box;
  background-size: contain;
  background-repeat: no-repeat;

  grid-area: gauche;
  background-blend-mode: normal;
}

.link-container.link-container-2 {
  border-width: .0625rem;
  border-style: solid;
  background-image: url('../camera.jpg');
  background-attachment: local;
  background-position: center center;
  background-clip: border-box;
  background-origin: padding-box;
  background-size: contain;
  background-repeat: no-repeat;

  grid-area: droite;
  background-blend-mode: normal;
}

@media screen and (min-width: 40rem) {
  /* Text Elements */

  h1 span.heading-text-1 {
    font-size: 1.5rem;
  }

  h1.heading-1 {
    display: block;
    min-height: 0;
    max-height: none;

    -webkit-align-self: auto;
    -ms-flex-item-align: auto;
            align-self: auto;
    justify-self: auto;
  }

  h1.heading-3 {
    font-size: 40px;
  }

  /* Layout Elements */

  .container.container-1 {
    grid-template-areas: 'gauche droite';
    grid-template-rows: minmax(300px, auto);
    grid-template-columns: repeat(2 , 1fr);
  }

  .container.container-2 {
    background-color: #0004ff;
  }

  .link-container.link-container-1 {
    border-width: .0625rem;
    border-style: solid;
  }

  .link-container.link-container-2 {
    border-width: .0625rem;
    border-style: solid;
  }
}