/* Reset de base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  font-family: Arial, sans-serif;
}

body {
  background-image: url('fruits-horizontal.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: black;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* Image mobile */
@media (max-width: 768px) {
  body {
    background-image: url('fruits-verticale.jpg');
  }
}

/* Bloc central */
.overlay {
  background-color: #ffffff00; /* transparent */
  padding: 1rem;
    background-color: #ffffff00;
    width: auto;
    position: absolute;
    left: calc(9vw);

}

/* Titre */
.overlay h1 {
  font-weight: 900;
  font-size: 1.5rem;
  letter-spacing: 1px;
}

/* Liens */
.overlay p {
  margin-top: 1rem;
  font-weight: bold;
  font-size: 1rem;
}

.overlay a {
  color: black;
  text-decoration: underline;
  margin: 0 0.3rem;
}



/* Image mobile */
@media (min-width: 769px) {
.overlay {
    left: calc(5%);
}
}
/* Image mobile */
@media (min-width: 1000px) {
.overlay { left: calc(9%);
}
}
/* Image mobile */
@media (min-width: 1200px) {
.overlay { left: calc(11%);
}
}
/* Image mobile */
@media (max-width: 768px) {
.overlay { top: calc(20%);
    left:auto;
}
}