@charset "UTF-8";
header {
  z-index: 6;
  display: flex;
  width: 100vw;
  position: fixed;
  top: -1px;
  align-items: center;
  justify-content: space-between;
  padding: 15px 40px;
  backdrop-filter: blur(3px);
}
@media screen and (max-width: 1200px) {
  header {
    padding: 20px 25px;
    backdrop-filter: unset;
  }
}
header .usernameHeader {
  display: flex;
  align-items: center;
  gap: 30px;
  height: 40px;
  font-family: "Poppins";
  font-style: italic;
  font-size: 18px;
}
header .usernameHeader a {
  color: whitesmoke;
  display: flex;
  align-items: center;
}
header .usernameHeader img {
  width: 80px;
  filter: brightness(10);
}
@media screen and (max-width: 1200px) {
  header .usernameHeader img {
    width: 60px;
  }
}
@media screen and (max-width: 1200px) {
  header .usernameHeader .typewrite {
    display: none;
  }
}
@media screen and (max-width: 1200px) {
  header .usernameHeader {
    gap: 20px;
  }
}
header .navigation {
  display: flex;
  align-items: center;
  gap: 30px;
}
@media screen and (max-width: 1200px) {
  header .navigation {
    gap: 20px;
  }
}
header .navigation .LinkedIn img {
  width: 30px;
}
@media screen and (max-width: 1200px) {
  header .navigation .LinkedIn {
    display: none;
  }
}
header .navigation .GitHub img {
  width: 30px;
}
@media screen and (max-width: 1200px) {
  header .navigation .GitHub {
    display: none;
  }
}
header .navigation .Instagram img {
  width: 30px;
}
@media screen and (max-width: 1200px) {
  header .navigation .Instagram {
    display: none;
  }
}
header .navigation nav {
  z-index: 8;
}
header .navigation nav .burger {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
header .navigation nav .burger span:nth-child(1) {
  width: 15px;
  height: 3px;
  background-color: whitesmoke;
  align-self: flex-start;
  transition: 0.2s all;
}
header .navigation nav .burger span:nth-child(2) {
  width: 30px;
  height: 3px;
  background-color: whitesmoke;
  align-self: flex-end;
  transition: 0.2s all;
}
header .navigation nav .burger span:nth-child(3) {
  width: 15px;
  height: 3px;
  background-color: whitesmoke;
  align-self: flex-end;
  transition: 0.2s all;
}
header .navigation nav .burger:hover > span {
  width: 30px;
  transition: 0.2s all;
  background-color: rgb(199, 0, 0);
}
header .burgerOpen {
  z-index: 7;
  position: absolute;
  bottom: 100%;
  left: 0;
  background-color: rgb(20, 20, 20);
  width: 100vw;
  transition: 0.5s all;
  height: 101vh;
}
header .burgerOpen .navLinks {
  width: 0;
  gap: 10vh;
}
header .burgerOpen .navLinks > li {
  list-style: none;
  display: none;
}
header .burgerOpen .navLinks > li > a {
  color: whitesmoke;
  text-decoration: none;
  font-size: 30px;
  font-family: "Poppins";
}
header .burgerOpen .navLinks .linksInNav {
  display: none;
}
@media screen and (max-width: 1200px) {
  header .burgerOpen .navLinks .linksInNav {
    display: flex;
    gap: 30px;
  }
}
header .burgerOpen .navLinks .linksInNav .LinkedIn img {
  width: 30px;
}
header .burgerOpen .navLinks .linksInNav .GitHub img {
  width: 30px;
}
header .burgerOpen .navLinks .linksInNav .Instagram img {
  width: 30px;
}
header .navOpen {
  bottom: -92vh;
  width: unset;
  transition: 0.5s all;
}
header .navOpen .navLinks {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100vw;
  height: 101vh;
  gap: 10vh;
}
header .navOpen .navLinks > li {
  display: block;
}
@media screen and (max-width: 1200px) {
  header .navOpen .navLinks {
    width: 100vw;
  }
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
  /* Merci kléklé */
}
* .homepage {
  background-color: rgb(20, 20, 20);
}
* .homepage .visualPosition {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 25px;
  position: fixed;
  top: 50%;
  bottom: 50%;
  left: 10px;
}
* .homepage .visualPosition .buttonVisualPosition {
  width: 20px;
  height: 5px;
  background-color: whitesmoke;
  border-radius: 10px;
  transition: 0.5s all;
}
* .homepage .visualPosition .buttonVisualPosition:hover {
  width: 35px;
}
@media screen and (max-width: 1200px) {
  * .homepage .visualPosition {
    display: none;
  }
}
* .homepage .visualPosition .active {
  width: 30px;
  transition: 0.5s all;
}
* .homepage .scroll-parent {
  height: 100vh;
  overflow-y: scroll;
  scroll-snap-type: y mandatory;
  scroll-behavior: smooth;
}
* .homepage .scroll-parent > section {
  scroll-snap-align: start;
}
* .homepage .scroll-parent .accueil {
  height: 100vh;
  background-image: url(/images/Me/vincentintheprojects.JPG);
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Jost", sans-serif;
}
@media screen and (max-width: 1200px) {
  * .homepage .scroll-parent .accueil {
    background-attachment: unset;
  }
}
* .homepage .scroll-parent .accueil .maxW {
  width: 70vw;
  display: flex;
  justify-content: space-between;
  margin-right: 80px;
}
@media screen and (max-width: 1200px) {
  * .homepage .scroll-parent .accueil .maxW {
    width: 90vw;
    justify-content: center;
    flex-direction: column-reverse;
    align-items: center;
    gap: 20px;
    margin-right: unset;
  }
}
* .homepage .scroll-parent .accueil .maxW .sectionInfo {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 30px;
  color: whitesmoke;
}
@media screen and (max-width: 1200px) {
  * .homepage .scroll-parent .accueil .maxW .sectionInfo {
    gap: 5px;
  }
}
* .homepage .scroll-parent .accueil .maxW .sectionInfo .name {
  display: flex;
  gap: 15px;
}
* .homepage .scroll-parent .accueil .maxW .sectionInfo .name h1 {
  font-size: 70px;
  color: whitesmoke;
  width: 59%;
}
@media screen and (max-width: 1200px) {
  * .homepage .scroll-parent .accueil .maxW .sectionInfo .name h1 {
    font-size: 55px;
    text-align: center;
    align-self: center;
    width: 80%;
  }
}
@media screen and (max-width: 1200px) {
  * .homepage .scroll-parent .accueil .maxW .sectionInfo .name {
    flex-direction: column;
    gap: unset;
  }
}
* .homepage .scroll-parent .accueil .maxW .sectionInfo .underTitle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  width: 200px;
}
@media screen and (max-width: 1200px) {
  * .homepage .scroll-parent .accueil .maxW .sectionInfo .underTitle {
    align-self: center;
  }
}
* .homepage .scroll-parent .accueil .maxW .sectionInfo .underTitle .decorationUnderTitle:nth-child(1) {
  width: 120px;
  height: 6px;
  border-radius: 10px;
  background-color: rgb(199, 0, 0);
  align-self: flex-end;
}
* .homepage .scroll-parent .accueil .maxW .sectionInfo .underTitle .decorationUnderTitle:nth-child(2) {
  width: 120px;
  height: 6px;
  border-radius: 10px;
  background-color: rgb(175, 0, 0);
}
* .homepage .scroll-parent .accueil .maxW .sectionInfo a {
  margin-top: 10px;
  padding: 1em;
  font-size: 25px;
  text-align: center;
  text-decoration: none;
  color: whitesmoke;
  border: 4px solid whitesmoke;
  border-radius: 40px 10px;
  width: fit-content;
  align-self: flex-start;
}
@media screen and (max-width: 1200px) {
  * .homepage .scroll-parent .accueil .maxW .sectionInfo a {
    padding: 1em;
    border-radius: 10px 40px;
    margin-top: 20px;
    align-self: center;
  }
}
* .homepage .scroll-parent .skills {
  height: 100vh;
  background-image: url(/images/backgrounds/competences.jpeg);
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Jost", sans-serif;
}
@media screen and (max-width: 1200px) {
  * .homepage .scroll-parent .skills {
    background-attachment: unset;
  }
}
* .homepage .scroll-parent .skills .maxWCompetences {
  width: 70vw;
  display: flex;
  justify-content: space-between;
  flex-direction: row-reverse;
  margin-left: 80px;
}
@media screen and (max-width: 1200px) {
  * .homepage .scroll-parent .skills .maxWCompetences {
    width: 90vw;
    justify-content: center;
    flex-direction: column-reverse;
    align-items: center;
    gap: 20px;
    margin-left: unset;
  }
}
* .homepage .scroll-parent .skills .maxWCompetences .sectionCompetenceHome {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 30px;
  color: whitesmoke;
}
@media screen and (max-width: 1200px) {
  * .homepage .scroll-parent .skills .maxWCompetences .sectionCompetenceHome {
    gap: 5px;
  }
}
* .homepage .scroll-parent .skills .maxWCompetences .sectionCompetenceHome .titleCompetenceHome {
  display: flex;
  gap: 15px;
}
* .homepage .scroll-parent .skills .maxWCompetences .sectionCompetenceHome .titleCompetenceHome h1 {
  font-size: 70px;
  font-family: "Jost", sans-serif;
}
@media screen and (max-width: 1200px) {
  * .homepage .scroll-parent .skills .maxWCompetences .sectionCompetenceHome .titleCompetenceHome h1 {
    font-size: 55px;
    text-align: center;
    align-self: center;
  }
}
@media screen and (max-width: 1200px) {
  * .homepage .scroll-parent .skills .maxWCompetences .sectionCompetenceHome .titleCompetenceHome {
    flex-direction: column;
    gap: unset;
  }
}
* .homepage .scroll-parent .skills .maxWCompetences .sectionCompetenceHome .underTitle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-self: flex-end;
  gap: 20px;
  width: 200px;
}
@media screen and (max-width: 1200px) {
  * .homepage .scroll-parent .skills .maxWCompetences .sectionCompetenceHome .underTitle {
    align-self: center;
  }
}
* .homepage .scroll-parent .skills .maxWCompetences .sectionCompetenceHome .underTitle .decorationUnderTitle:nth-child(1) {
  width: 120px;
  height: 6px;
  border-radius: 10px;
  background-color: rgb(199, 0, 0);
  align-self: flex-end;
}
* .homepage .scroll-parent .skills .maxWCompetences .sectionCompetenceHome .underTitle .decorationUnderTitle:nth-child(2) {
  width: 120px;
  height: 6px;
  border-radius: 10px;
  background-color: rgb(175, 0, 0);
}
* .homepage .scroll-parent .skills .maxWCompetences .sectionCompetenceHome a {
  margin-top: 10px;
  padding: 1em;
  font-size: 25px;
  text-align: center;
  text-decoration: none;
  color: whitesmoke;
  border: 4px solid whitesmoke;
  border-radius: 10px 40px;
  width: fit-content;
  align-self: flex-end;
}
@media screen and (max-width: 1200px) {
  * .homepage .scroll-parent .skills .maxWCompetences .sectionCompetenceHome a {
    padding: 1em;
    border-radius: 40px 10px;
    margin-top: 20px;
    align-self: center;
  }
}
* .homepage .scroll-parent .skills .maxWCompetences .sectionImageCompetences {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 150px;
  width: 360px;
}
@media screen and (max-width: 1200px) {
  * .homepage .scroll-parent .skills .maxWCompetences .sectionImageCompetences {
    margin-top: unset;
    flex-direction: column-reverse;
    gap: 10px;
  }
}
* .homepage .scroll-parent .skills .maxWCompetences .sectionImageCompetences .squarePhotoSkills {
  width: 190%;
  height: 50vh;
  background-image: url(/images/Me/vincentlookAtsomething.JPG);
  background-size: cover;
  border-radius: 10px 200px;
}
@media screen and (max-width: 1200px) {
  * .homepage .scroll-parent .skills .maxWCompetences .sectionImageCompetences .squarePhotoSkills {
    width: 70vw;
    height: 16em;
    border-radius: 150px 20px;
    background-position: left;
  }
}
* .homepage .scroll-parent .skills .maxWCompetences .sectionImageCompetences .squarePhotoSkills .fondu {
  width: 100%;
  height: 100%;
  background: linear-gradient(transparent 70%, rgb(20, 20, 20));
  border-radius: 10px 200px;
}
@media screen and (max-width: 1200px) {
  * .homepage .scroll-parent .skills .maxWCompetences .sectionImageCompetences .squarePhotoSkills .fondu {
    border-radius: 150px 20px;
  }
}
* .homepage .scroll-parent .skills .maxWCompetences .sectionImageCompetences h1 {
  z-index: 3;
  position: relative;
  bottom: 50px;
  left: 300px;
  font-size: 55px;
  color: whitesmoke;
}
@media screen and (max-width: 1200px) {
  * .homepage .scroll-parent .skills .maxWCompetences .sectionImageCompetences h1 {
    position: unset;
    text-align: center;
    width: 80%;
  }
}
* .homepage .scroll-parent .projects {
  height: 100vh;
  background-image: url(/images/backgrounds/projets.jpeg);
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Jost", sans-serif;
}
@media screen and (max-width: 1200px) {
  * .homepage .scroll-parent .projects {
    background-attachment: unset;
  }
}
* .homepage .scroll-parent .projects .maxWProjets {
  width: 70vw;
  display: flex;
  justify-content: space-between;
  margin-right: 80px;
}
@media screen and (max-width: 1200px) {
  * .homepage .scroll-parent .projects .maxWProjets {
    width: 90vw;
    justify-content: center;
    flex-direction: column-reverse;
    align-items: center;
    gap: 20px;
    margin-right: unset;
  }
}
* .homepage .scroll-parent .projects .maxWProjets .sectionProjetsHome {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 30px;
  color: whitesmoke;
}
@media screen and (max-width: 1200px) {
  * .homepage .scroll-parent .projects .maxWProjets .sectionProjetsHome {
    gap: 5px;
  }
}
* .homepage .scroll-parent .projects .maxWProjets .sectionProjetsHome .titleProjetsHome {
  display: flex;
  gap: 15px;
}
* .homepage .scroll-parent .projects .maxWProjets .sectionProjetsHome .titleProjetsHome > h1 {
  font-size: 70px;
  font-family: "Jost", sans-serif;
}
@media screen and (max-width: 1200px) {
  * .homepage .scroll-parent .projects .maxWProjets .sectionProjetsHome .titleProjetsHome > h1 {
    font-size: 75px;
    text-align: center;
  }
}
@media screen and (max-width: 1200px) {
  * .homepage .scroll-parent .projects .maxWProjets .sectionProjetsHome .titleProjetsHome {
    flex-direction: column;
    gap: unset;
  }
}
* .homepage .scroll-parent .projects .maxWProjets .sectionProjetsHome .underTitle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  width: 200px;
}
@media screen and (max-width: 1200px) {
  * .homepage .scroll-parent .projects .maxWProjets .sectionProjetsHome .underTitle {
    align-self: center;
  }
}
* .homepage .scroll-parent .projects .maxWProjets .sectionProjetsHome .underTitle .decorationUnderTitle:nth-child(1) {
  width: 120px;
  height: 6px;
  border-radius: 10px;
  background-color: rgb(199, 0, 0);
  align-self: flex-end;
}
* .homepage .scroll-parent .projects .maxWProjets .sectionProjetsHome .underTitle .decorationUnderTitle:nth-child(2) {
  width: 120px;
  height: 6px;
  border-radius: 10px;
  background-color: rgb(175, 0, 0);
}
* .homepage .scroll-parent .projects .maxWProjets .sectionProjetsHome a {
  margin-top: 10px;
  padding: 1em;
  font-size: 25px;
  text-align: center;
  text-decoration: none;
  color: whitesmoke;
  border: 4px solid whitesmoke;
  width: fit-content;
  border-radius: 40px 10px;
  align-self: flex-start;
}
@media screen and (max-width: 1200px) {
  * .homepage .scroll-parent .projects .maxWProjets .sectionProjetsHome a {
    padding: 1em;
    border-radius: 10px 40px;
    margin-top: 20px;
    align-self: center;
  }
}
* .homepage .scroll-parent .projects .maxWProjets .sectionImageProjets {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 150px;
  width: 360px;
}
@media screen and (max-width: 1200px) {
  * .homepage .scroll-parent .projects .maxWProjets .sectionImageProjets {
    margin-top: unset;
    flex-direction: column-reverse;
    gap: 10px;
  }
}
* .homepage .scroll-parent .projects .maxWProjets .sectionImageProjets .squarePhotoProjets {
  width: 190%;
  height: 50vh;
  background-image: url(/images/Me/CorcoranVincent.JPG);
  background-size: cover;
  border-radius: 200px 10px;
}
@media screen and (max-width: 1200px) {
  * .homepage .scroll-parent .projects .maxWProjets .sectionImageProjets .squarePhotoProjets {
    width: 70vw;
    height: 16em;
    border-radius: 20px 150px;
    background-position: right;
  }
}
* .homepage .scroll-parent .projects .maxWProjets .sectionImageProjets .squarePhotoProjets .fondu {
  width: 100%;
  height: 100%;
  background: linear-gradient(transparent 70%, rgb(20, 20, 20));
  border-radius: 200px 10px;
}
@media screen and (max-width: 1200px) {
  * .homepage .scroll-parent .projects .maxWProjets .sectionImageProjets .squarePhotoProjets .fondu {
    border-radius: 20px 150px;
  }
}
* .homepage .scroll-parent .projects .maxWProjets .sectionImageProjets h1 {
  z-index: 3;
  position: relative;
  bottom: 50px;
  right: 305px;
  font-size: 55px;
  color: whitesmoke;
}
@media screen and (max-width: 1200px) {
  * .homepage .scroll-parent .projects .maxWProjets .sectionImageProjets h1 {
    position: unset;
  }
}
* .homepage .scroll-parent .contact {
  height: 100vh;
  background-image: url(/images/backgrounds/Contact.jpeg);
  background-size: cover;
  background-attachment: fixed;
  background-position: right;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Jost", sans-serif;
}
@media screen and (max-width: 1200px) {
  * .homepage .scroll-parent .contact {
    background-attachment: unset;
  }
}
* .homepage .scroll-parent .contact .maxWContact {
  width: 70vw;
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  margin-left: 80px;
}
@media screen and (max-width: 1200px) {
  * .homepage .scroll-parent .contact .maxWContact {
    width: 90vw;
    justify-content: center;
    flex-direction: column-reverse;
    align-items: center;
    gap: 20px;
    margin-left: unset;
  }
}
* .homepage .scroll-parent .contact .maxWContact .sectionContactHome {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 30px;
  color: whitesmoke;
}
@media screen and (max-width: 1200px) {
  * .homepage .scroll-parent .contact .maxWContact .sectionContactHome {
    gap: 5px;
  }
}
* .homepage .scroll-parent .contact .maxWContact .sectionContactHome .titleContactHome {
  display: flex;
  gap: 15px;
}
* .homepage .scroll-parent .contact .maxWContact .sectionContactHome .titleContactHome > h1 {
  font-size: 70px;
  font-family: "Jost", sans-serif;
}
@media screen and (max-width: 1200px) {
  * .homepage .scroll-parent .contact .maxWContact .sectionContactHome .titleContactHome > h1 {
    font-size: 75px;
    text-align: center;
  }
}
@media screen and (max-width: 1200px) {
  * .homepage .scroll-parent .contact .maxWContact .sectionContactHome .titleContactHome {
    flex-direction: column;
    gap: unset;
  }
}
* .homepage .scroll-parent .contact .maxWContact .sectionContactHome .underTitle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-self: flex-end;
  gap: 20px;
  width: 200px;
}
@media screen and (max-width: 1200px) {
  * .homepage .scroll-parent .contact .maxWContact .sectionContactHome .underTitle {
    align-self: center;
  }
}
* .homepage .scroll-parent .contact .maxWContact .sectionContactHome .underTitle .decorationUnderTitle:nth-child(1) {
  width: 120px;
  height: 6px;
  border-radius: 10px;
  background-color: rgb(199, 0, 0);
  align-self: flex-end;
}
* .homepage .scroll-parent .contact .maxWContact .sectionContactHome .underTitle .decorationUnderTitle:nth-child(2) {
  width: 120px;
  height: 6px;
  border-radius: 10px;
  background-color: rgb(175, 0, 0);
}
* .homepage .scroll-parent .contact .maxWContact .sectionContactHome .textContact {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-around;
  gap: 10px;
}
@media screen and (max-width: 1200px) {
  * .homepage .scroll-parent .contact .maxWContact .sectionContactHome .textContact {
    align-items: center;
    text-align: center;
  }
}
* .homepage .scroll-parent .contact .maxWContact .sectionContactHome .textContact > h2 {
  text-align: end;
}
@media screen and (max-width: 1200px) {
  * .homepage .scroll-parent .contact .maxWContact .sectionContactHome .textContact > h2 {
    text-align: center;
  }
}
* .homepage .scroll-parent .contact .maxWContact .sectionContactHome .textContact > h2 > a {
  color: whitesmoke;
  text-decoration: underline;
}
* .homepage .scroll-parent .contact .maxWContact .sectionImageContact {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 150px;
  width: 360px;
}
@media screen and (max-width: 1200px) {
  * .homepage .scroll-parent .contact .maxWContact .sectionImageContact {
    margin-top: unset;
    flex-direction: column-reverse;
    gap: 10px;
  }
}
* .homepage .scroll-parent .contact .maxWContact .sectionImageContact .squarePhotoContact {
  width: 190%;
  height: 50vh;
  background-image: url(/images/Me/vincentContact.JPG);
  background-size: cover;
  background-position: center;
  border-radius: 10px 200px;
}
@media screen and (max-width: 1200px) {
  * .homepage .scroll-parent .contact .maxWContact .sectionImageContact .squarePhotoContact {
    width: 70vw;
    height: 16em;
    border-radius: 150px 20px;
    background-position: left;
  }
}
* .homepage .scroll-parent .contact .maxWContact .sectionImageContact .squarePhotoContact .fondu {
  width: 100%;
  height: 100%;
  background: linear-gradient(transparent 70%, rgb(20, 20, 20));
  border-radius: 10px 200px;
}
@media screen and (max-width: 1200px) {
  * .homepage .scroll-parent .contact .maxWContact .sectionImageContact .squarePhotoContact .fondu {
    border-radius: 150px 20px;
  }
}
* .homepage .scroll-parent .contact .maxWContact .sectionImageContact h1 {
  z-index: 3;
  position: relative;
  bottom: 50px;
  left: 300px;
  font-size: 55px;
  color: whitesmoke;
}
@media screen and (max-width: 1200px) {
  * .homepage .scroll-parent .contact .maxWContact .sectionImageContact h1 {
    position: unset;
  }
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
  /* Merci kléklé */
}
* .skillspage {
  background-image: url(/images/backgrounds/competences.jpeg);
  background-size: cover;
  background-attachment: fixed;
  background-position: left;
}
@media screen and (max-width: 1200px) {
  * .skillspage {
    background-attachment: unset;
    background-position: center;
  }
}
* .skillspage .allSkills {
  height: max-content;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Jost", sans-serif;
  flex-direction: column;
  gap: 30px;
  padding-top: 10vh;
}
@media screen and (max-width: 1200px) {
  * .skillspage .allSkills {
    height: max-content;
  }
}
* .skillspage .allSkills > h1 {
  color: whitesmoke;
  font-size: 60px;
}
@media screen and (max-width: 1200px) {
  * .skillspage .allSkills > h1 {
    text-align: center;
  }
}
* .skillspage .allSkills .maxW {
  width: 60vw;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 50px;
  margin-bottom: 50px;
}
@media screen and (max-width: 1200px) {
  * .skillspage .allSkills .maxW {
    width: 90vw;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-bottom: 20px;
  }
}
* .skillspage .allSkills .maxW > div {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  background-color: rgb(20, 20, 20);
  border: 4px solid whitesmoke;
  padding: 2em 3em;
  border-radius: 100px 10px;
  gap: 10px;
  width: 200px;
  transition: all ease-in 0.05s;
}
@media screen and (max-width: 1200px) {
  * .skillspage .allSkills .maxW > div {
    padding: 1em 2em;
    width: 170px;
    height: 200px;
  }
}
* .skillspage .allSkills .maxW > div:hover {
  border: 4px solid rgb(175, 0, 0);
  transform: scale(1.1);
}
* .skillspage .allSkills .maxW > div > img {
  width: 100px;
}
@media screen and (max-width: 1200px) {
  * .skillspage .allSkills .maxW > div > img {
    width: 70px;
  }
}
* .skillspage .allSkills .maxW > div > h2 {
  color: whitesmoke;
  text-align: center;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
  /* Merci kléklé */
}
* .projectsPage {
  background-image: url(/images/backgrounds/projets.jpeg);
  background-size: cover;
  background-attachment: fixed;
  background-position: left;
}
@media screen and (max-width: 1200px) {
  * .projectsPage {
    background-attachment: unset;
    background-position: center;
  }
}
* .projectsPage .allProjects {
  height: max-content;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Jost", sans-serif;
  flex-direction: column;
  gap: 30px;
  padding-top: 10vh;
}
@media screen and (max-width: 1200px) {
  * .projectsPage .allProjects {
    height: max-content;
  }
}
* .projectsPage .allProjects > h1 {
  color: whitesmoke;
  font-size: 60px;
}
@media screen and (max-width: 1200px) {
  * .projectsPage .allProjects > h1 {
    text-align: center;
  }
}
* .projectsPage .allProjects .maxW {
  width: 80vw;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  gap: 50px;
  margin-bottom: 50px;
}
@media screen and (max-width: 1200px) {
  * .projectsPage .allProjects .maxW {
    width: 90vw;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-bottom: 20px;
  }
}
* .projectsPage .allProjects .maxW > a {
  text-decoration: none;
}
* .projectsPage .allProjects .maxW > a .blocProject {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgb(20, 20, 20);
  border: 4px solid whitesmoke;
  padding: 2em 3em;
  border-radius: 100px 10px;
  gap: 30px;
  width: 420px;
  height: 300px;
  transition: all ease-in 0.05s;
}
@media screen and (max-width: 1200px) {
  * .projectsPage .allProjects .maxW > a .blocProject {
    width: 400px;
  }
}
* .projectsPage .allProjects .maxW > a .blocProject:hover {
  border: 4px solid rgb(175, 0, 0);
  transform: scale(1.1);
}
* .projectsPage .allProjects .maxW > a .blocProject > img {
  width: 100px;
}
@media screen and (max-width: 1200px) {
  * .projectsPage .allProjects .maxW > a .blocProject > img {
    width: 70px;
  }
}
* .projectsPage .allProjects .maxW > a .blocProject > .textProject {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  color: whitesmoke;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
  /* Merci kléklé */
}
* .aboutmePage .sectionAboutMe {
  background-image: url(/images/backgrounds/AccueilHome.jpeg);
  background-size: cover;
  background-attachment: fixed;
  background-position: left;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
}
@media screen and (max-width: 1200px) {
  * .aboutmePage .sectionAboutMe {
    background-attachment: unset;
    background-position: center;
  }
}
* .aboutmePage .sectionAboutMe .topMe {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 150px;
}
@media screen and (max-width: 1200px) {
  * .aboutmePage .sectionAboutMe .topMe {
    flex-direction: column;
    gap: 20px;
  }
}
* .aboutmePage .sectionAboutMe .topMe .imageAboutMe {
  width: 40vw;
  height: 40vh;
  background-image: url(/images/Me/vincentlookAtsomething.JPG);
  background-size: cover;
  border-radius: 200px 10px;
  background-position: center;
}
@media screen and (max-width: 1200px) {
  * .aboutmePage .sectionAboutMe .topMe .imageAboutMe {
    width: 70vw;
    height: 16em;
    border-radius: 20px 150px;
    background-position: center 35%;
  }
}
* .aboutmePage .sectionAboutMe .topMe .imageAboutMe .fondu {
  width: 100%;
  height: 100%;
  background: linear-gradient(transparent 70%, rgb(20, 20, 20));
  border-radius: 200px 10px;
}
@media screen and (max-width: 1200px) {
  * .aboutmePage .sectionAboutMe .topMe .imageAboutMe .fondu {
    border-radius: 20px 150px;
  }
}
* .aboutmePage .sectionAboutMe .topMe .textPresentation {
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 1200px) {
  * .aboutmePage .sectionAboutMe .topMe .textPresentation {
    justify-content: center;
    align-items: center;
    gap: 10px;
  }
}
* .aboutmePage .sectionAboutMe .topMe .textPresentation h1 {
  color: whitesmoke;
  font-family: "Jost", sans-serif;
  font-size: 55px;
  text-align: end;
}
* .aboutmePage .sectionAboutMe .topMe .textPresentation .underTitle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-self: flex-end;
  gap: 20px;
  width: 200px;
  margin: 20px 0;
}
@media screen and (max-width: 1200px) {
  * .aboutmePage .sectionAboutMe .topMe .textPresentation .underTitle {
    align-self: center;
  }
}
* .aboutmePage .sectionAboutMe .topMe .textPresentation .underTitle .decorationUnderTitle:nth-child(1) {
  width: 120px;
  height: 6px;
  border-radius: 10px;
  background-color: rgb(199, 0, 0);
  align-self: flex-end;
}
* .aboutmePage .sectionAboutMe .topMe .textPresentation .underTitle .decorationUnderTitle:nth-child(2) {
  width: 120px;
  height: 6px;
  border-radius: 10px;
  background-color: rgb(175, 0, 0);
}
* .aboutmePage .sectionAboutMe .topMe .textPresentation h3 {
  color: whitesmoke;
  font-family: "Jost", sans-serif;
  font-size: 45px;
  text-align: end;
}
* .aboutmePage .sectionPassion {
  height: max-content;
  min-height: 100vh;
  background-image: url(/images/backgrounds/competences.jpeg);
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
  display: flex;
  gap: 25px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: whitesmoke;
  font-family: "Jost", sans-serif;
}
* .aboutmePage .sectionPassion h2 {
  font-family: "Jost", sans-serif;
  font-size: 55px;
}
* .aboutmePage .sectionPassion .underTitle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  width: 200px;
}
@media screen and (max-width: 1200px) {
  * .aboutmePage .sectionPassion .underTitle {
    align-self: center;
  }
}
* .aboutmePage .sectionPassion .underTitle .decorationUnderTitle:nth-child(1) {
  width: 120px;
  height: 6px;
  border-radius: 10px;
  background-color: rgb(199, 0, 0);
  align-self: flex-end;
}
* .aboutmePage .sectionPassion .underTitle .decorationUnderTitle:nth-child(2) {
  width: 120px;
  height: 6px;
  border-radius: 10px;
  background-color: rgb(175, 0, 0);
}
* .aboutmePage .sectionPassion li {
  width: 70%;
  font-size: 25px;
}
* .aboutmePage .sectionPassion .passionImages {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-around;
  width: 90%;
  margin-top: 50px;
  padding-bottom: 30px;
}
* .aboutmePage .sectionPassion .passionImages .imagesPassion {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 400px;
  height: 260px;
  max-height: 300px;
  border-radius: 130px 10px;
  transition: 0.1s all;
}
* .aboutmePage .sectionPassion .passionImages .imagesPassion:hover {
  transition: 0.1s all;
  background-color: rgb(20, 20, 20);
  background-image: unset;
}
* .aboutmePage .sectionPassion .passionImages .imagesPassion:hover > p {
  display: block;
}
@media screen and (max-width: 1200px) {
  * .aboutmePage .sectionPassion .passionImages .imagesPassion {
    width: 350px;
  }
}
* .aboutmePage .sectionPassion .passionImages .imagesPassion > p {
  font-size: 25px;
  display: none;
}
* .aboutmePage .sectionPassion .passionImages .music {
  background-image: url(/images/about-me/droeloe.png);
  background-size: cover;
}
* .aboutmePage .sectionPassion .passionImages .skateboard {
  background-image: url(/images/about-me/longboard.jpeg);
  background-size: cover;
}
* .aboutmePage .sectionPassion .passionImages .voyages {
  background-image: url(/images/about-me/tenerife.jpeg);
  background-size: cover;
}
* .aboutmePage .sectionPassion .passionImages .canards {
  background-image: url(/images/about-me/canards.jpeg);
  background-size: cover;
}
@media screen and (max-width: 1200px) {
  * .aboutmePage .sectionPassion {
    background-attachment: unset;
    padding: 50px 0;
  }
  * .aboutmePage .sectionPassion p {
    width: 90%;
    font-size: 20px;
  }
}
* .aboutmePage .sectionSoftSkills {
  height: 100vh;
  background-image: url(/images/backgrounds/projets.jpeg);
  background-size: cover;
  background-attachment: fixed;
  background-position: right;
  display: flex;
  justify-content: space-around;
  align-items: center;
  font-family: "Jost", sans-serif;
  padding: 0 50px;
}
@media screen and (max-width: 1200px) {
  * .aboutmePage .sectionSoftSkills {
    background-attachment: unset;
    flex-direction: column;
    height: max-content;
    padding: 20px 0;
    min-height: 100vh;
  }
}
* .aboutmePage .sectionSoftSkills > div {
  width: 45%;
}
@media screen and (max-width: 1200px) {
  * .aboutmePage .sectionSoftSkills > div {
    width: 90%;
  }
}
* .aboutmePage .sectionSoftSkills .softSkillsText {
  color: whitesmoke;
}
@media screen and (max-width: 1200px) {
  * .aboutmePage .sectionSoftSkills .softSkillsText {
    display: flex;
    flex-direction: column;
  }
}
* .aboutmePage .sectionSoftSkills .softSkillsText h2 {
  font-family: "Jost", sans-serif;
  font-size: 55px;
}
@media screen and (max-width: 1200px) {
  * .aboutmePage .sectionSoftSkills .softSkillsText h2 {
    text-align: center;
  }
}
* .aboutmePage .sectionSoftSkills .softSkillsText .underTitle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  width: 200px;
  margin: 20px 0;
}
@media screen and (max-width: 1200px) {
  * .aboutmePage .sectionSoftSkills .softSkillsText .underTitle {
    align-self: center;
  }
}
* .aboutmePage .sectionSoftSkills .softSkillsText .underTitle .decorationUnderTitle:nth-child(1) {
  width: 120px;
  height: 6px;
  border-radius: 10px;
  background-color: rgb(199, 0, 0);
  align-self: flex-end;
}
* .aboutmePage .sectionSoftSkills .softSkillsText .underTitle .decorationUnderTitle:nth-child(2) {
  width: 120px;
  height: 6px;
  border-radius: 10px;
  background-color: rgb(175, 0, 0);
}
* .aboutmePage .sectionSoftSkills .softSkillsText p {
  font-size: 25px;
}
@media screen and (max-width: 1200px) {
  * .aboutmePage .sectionSoftSkills .softSkillsText p {
    text-align: center;
  }
}
* .aboutmePage .sectionSoftSkills .softSkillsText li {
  font-size: 25px;
}
@media screen and (max-width: 1200px) {
  * .aboutmePage .sectionSoftSkills .softSkillsText li {
    text-align: center;
  }
}
* .aboutmePage .sectionSoftSkills .imageAboutMeBottom {
  width: 40%;
  height: 50vh;
  background-image: url(/images/Me/vincentbottomabouuutt.JPG);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 200px 10px;
}
@media screen and (max-width: 1200px) {
  * .aboutmePage .sectionSoftSkills .imageAboutMeBottom {
    width: 70vw;
    height: 24em;
    border-radius: 200px 20px;
    background-position: center;
  }
}
* .aboutmePage .sectionSoftSkills .imageAboutMeBottom .fondu {
  width: 100%;
  height: 100%;
  background: linear-gradient(transparent 70%, rgb(20, 20, 20));
  border-radius: 200px 10px;
}
@media screen and (max-width: 1200px) {
  * .aboutmePage .sectionSoftSkills .imageAboutMeBottom .fondu {
    border-radius: 200px 10px;
  }
}

/*# sourceMappingURL=style.css.map */
