:root {
  --color-negre: #1D1D1B;
}
html,
body {
  margin: 0;
  padding: 0;
}
body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  display: grid;
  place-items: center;
  height: 100vh;
  color: var(--color-negre);
}
.container {
  margin-left: auto;
  margin-right: auto;
  padding-left: 25px;
  padding-right: 25px;
}
.container .img {
  text-align: center;
}
.container .img img {
  max-width: 600px;
  width: 100%;
}
.container .text {
  text-align: center;
  font-size: clamp(1rem, 0.8857rem + 0.5714vw, 1.25rem);
  margin-top: 6em;
}
.container .text a {
  color: gray;
  transition: color .3s ease;
}
.container .text a:hover {
  color: var(--color-negre);
  transition: color .3s ease;
}