@font-face {
  	font-family: "Grotesk";
  	src: url("fonts/grotesk/grotesk-webfont.woff2") format("woff2"),
      url("fonts/grotesk/grotesk-webfont.woff") format("woff");
    font-display: swap;
}

:root {
  --couleur-bordure: #000000;
}

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
html {
  overflow: hidden;
}
body {
  display: flex;
  align-items: center;
  height: 100vh;
  margin: 0;
  border: solid 15px var(--couleur-bordure);
  font-family: Grotesk;
  background-image: url('granit_suspension_petit.jpg');/* ICI LE NOM DU FICHIER DE L'IMAGE DE 1600px de haut */
  background-size: cover;
  background-position: center;
  overflow-y: auto;
}

@media only screen and (max-height: 1200px) and (max-width: 1740px) {
  body {
    background-image: url('granit_suspension_petit.jpg');/* ICI LE NOM DU FICHIER DE L'IMAGE DE 1200px de haut*/
  }
}
@media only screen and (max-height: 800px) and (max-width: 1160px) {
  body {
    background-image: url('granit_suspension_petit.jpg');/* ICI LE NOM DU FICHIER DE L'IMAGE DE 800px de haut*/
  }
}

div.element:nth-child(2) > div:nth-child(1) > span:nth-child(1) {
 font-size: 1.2em;
}



.conteneur {
  width: 100%;
  padding: 3rem;
  padding-right: 10%;
}
.element {
  width: 100%;
  margin: 2rem 0;
  text-align: right;
}
.cadre {
  display: inline-block;
  position: relative;
  padding: 7px;
  background: #ffffff9e;
  border: solid 4px var(--couleur-bordure);
  border-radius: 7px;
  max-width: 960px;
}
.cadre::before {
  content: '';
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  border-radius: 5px;
  box-shadow: var(--couleur-bordure) 4px -4px 0 5px;
  transition: box-shadow .3s;
}
.lien .cadre::before {
  box-shadow: var(--couleur-bordure) 4px -4px 0 0;
}
.lien .cadre:hover::before {
  box-shadow: var(--couleur-bordure) 4px -4px 0 5px;
}
.texte {
  line-height: 1.2;
}
.texte-long .texte span {
  font-family: sans-serif;
}
a {
  color: #000;
}
a::after {
  content: url('external-link-alt.svg');
  display: inline-block;
  position: relative;
  top: -2px;
  left: 2px;
  width: 10px;
}


@media only screen and (max-height: 900px) and (max-width: 450px) {
  body {
    align-items: flex-start;
  }
}
@media only screen and (max-height: 550px) and (max-width: 800px) {
  body {
    align-items: flex-start;
  }
}
