/* ---------------------------HEADER--------------------------- */
header {
  background-color: rgb(20, 20, 20);
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  gap: 5px;
}

.navblock {
  display: flex;
  flex-direction: row;
  gap: 20px;
  margin-right: 50px;
}

.navbar {
  color: white;
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
}
.navbar:hover {
  text-decoration: underline;
}
/* Menu burger pour mobile */
@media (max-width: 760px) {
  header {
    flex-direction: column;
    justify-content: unset;
    align-items: center;
  }
  .navblock {
    gap: 20px;
    margin-right: 0;
  }
}

/* ---------------------------HEADER--------------------------- */

/* ---------------------------FOOTER--------------------------- */
.footer {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 10px;
  width: 100%;
  height: 200px;
  background-color: rgb(20, 20, 20);
  color: white;
  align-content: center;
}
.col_reseaux {
  grid-column: 1;
  text-align: center;
}
.col_contact {
  grid-column: 2;
  text-align: center;
}

.copyright {
  font-size: 14px;
  height: 20px;
  background-color: rgb(255, 255, 255);
  color: rgb(0, 0, 0);
  font-weight: 600;
  text-align: center;
  padding-top: 2px;
}
/* ---------------------------FOOTER--------------------------- */

/*---------------------------CONTENT--------------------------- */
* {
  margin: 0;
  padding: 0;
  font-size: 16px;
  font-family: Arial, Helvetica, sans-serif;
}
body {
  background-color: whitesmoke;
}
.body {
  margin: auto;
}
a {
  text-decoration: none;
  color: white;
}
/* QUI SUIS JE */

.blockquisj {
  gap: 50px;
  display: flex;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: auto;
  align-items: center;
  margin-top: 100px;
  margin-bottom: 100px;
  padding-left: 50px;
}
.blockquisj2 {
  gap: 50px;
  display: flex;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: auto;
  align-items: center;
  margin-top: 100px;
  margin-bottom: 100px;
  padding-left: 50px;
  padding-bottom: 50px;
  background-color: #cfcfcf;
  border-top: 10px red solid;
  border-left: 10px red solid;
  border-bottom: 10px black solid;
  border-right: 10px black solid;
}

.img_qsj {
  width: 375px;
  height: 375px;
  border-radius: 50%;
  margin-top: 25px;
}
.img_qsj2 {
  width: 350px;
  height: 350px;
}

@media (max-width: 1111px) {
  .img_qsj {
    display: block;
    width: 300px;
    height: 300px;
  }
  .img_qsj2 {
    display: block;
    width: 300px;
    height: 300px;
  }
  * {
    font-size: 14px;
    font-family: Arial, Helvetica, sans-serif;
  }
}
@media (max-width: 760px) {
  #navblock {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    position: absolute;
    right: 12.5%;
    gap: 10px;
  }
  .img_qsj {
    display: block;
    width: 250px;
    height: 250px;
  }
  .img_qsj2 {
    display: block;
    width: 250px;
    height: 250px;
  }
  .blockquisj2 {
    max-width: 500px;
  }
  .blockquisj {
    max-width: 500px;
  }
}
.gaucheq {
  width: 50%;
}
.droiteq {
  display: block;
  width: 40%;
  text-align: center;
  padding-top: 70px;
}
.droiteq h1 {
  font-size: 50px;
  font-weight: 700;
}
.bouton_mj {
  width: fit-content;
  margin: auto;
  margin-top: 25px;
  display: block;
  background-color: rgb(20, 20, 20);
  border-radius: 5px;
  padding: 7.5px;
  font-weight: 700;
  border: black solid 3px;
}
.bouton_mj:hover {
  background-color: white;
  color: black;
  border: black solid 3px;
}
@media (max-width: 760px) {
  .blockquisj .gaucheq,
  .blockquisj2 .droiteq {
    padding-left: 40px;
  }

  .gaucheq {
    width: auto;
  }
  .droiteq {
    display: block;
    width: auto;
    text-align: center;
    padding-top: 30px;
  }
  .blockquisj,
  .blockquisj2 {
    padding-left: 5px;
  }
}

/* QUI SUIS JE */
/* ---------------------------CONTENT--------------------------- */
