* {
  font-family: Arial, sans-serif;
}

header {
  background-color: #000000;
  padding: 20px;
  display: flex;
  align-items: center;
}

.logo {
  height: 110px;
}
.return {
  background-color: black;
  color: #fff;
  text-decoration: none;
  font-size: 20px;
  margin-left: 20px;
  transition: 0.25s;
}

.return:hover {
  transform: translateX(-10px);
}

.titre {
  flex-grow: 2;
  background-color: #0059ff;
  color: #fff;
  font-weight: bold;
  text-align: center;
  padding: 10px;
  font-size: 30px;
  border-radius: 20px;
}
.container {
  width: 98%;
  padding: 0px 10px;
  background: #fff;
}
.block {
  display: flex;
  flex-direction: row;
  margin-bottom: 30px;
}
.block.reverse {
  display: flex;
  flex-direction: row-reverse;
}
.block.reverse img {
  display: flex;
  order: 1;
}
.block.reverse text {
  order: 2;
}
.text h2 {
  font-size: 20px;
  margin-bottom: 14px;
  text-align: center;
}

.text p {
  font-size: 20px;
  line-height: 1.55;
  margin-bottom: 14px;
}

.block img {
  width: 30%;
  height: 335px;
  object-fit: cover;
  border-radius: 10px;
  padding: 10px 10px;
}

footer {
  background-color: #000;
  color: #fff;
  display: flex;
  justify-content: space-between;
  padding: 20px;
  align-items: center;
}

.footer-gauche p {
  font-size: 40px;
}

.footer-centre {
  text-align: center;
}

.footer-centre img {
  height: 100px;
  margin-bottom: 5px;
}

.sociaux {
  height: 50px;
  width: 50px;
  margin-right: 30px;
  transition: 0.3s;
}

.sociaux:hover {
  transform: translateY(-6px) scale(1.1);
}

.footer-lien {
  color: white;
  font-size: 14px;
}
@media (max-width: 900px) {
  .logo {
    height: 80px;
  }

  .titre {
    font-size: 24px;
    padding: 8px;
  }

  .return {
    font-size: 16px;
  }

  .text h2 {
    font-size: 18px;
  }

  .text p {
    font-size: 14px;
  }

  .block img {
    width: 40%;
    height: 260px;
  }

  .footer-gauche p {
    font-size: 22px;
  }

  .footer-centre img {
    height: 70px;
  }
}

@media (max-width: 600px) {
  header {
    padding: 12px;
    gap: 10px;
  }

  .logo {
    height: 60px;
  }

  .titre {
    font-size: 18px;
    padding: 6px 10px;
    border-radius: 14px;
  }

  .return {
    font-size: 14px;
    margin-left: 10px;
  }

  .block,
  .block.reverse {
    flex-direction: column;
  }

  .block img {
    width: 100%;
    height: auto;
    object-fit: contain;
    padding: 0;
    margin-top: 10px;

    border-radius: 10px;
  }

  footer {
    flex-direction: column;
    text-align: center;
    gap: 5px;
  }

  .footer-gauche p {
    font-size: 18px;
  }

  .footer-centre img {
    height: 60px;
  }

  .sociaux {
    height: 40px;
    width: 40px;
    margin-right: 0;
    margin-left: 10px;
  }
}
