* {
  padding: 0px;
  margin: 0px;
  box-sizing: border-box;
}
body {
  font-size: -webkit-box;
  font-size: clamp(-webkit-min-content, 5vw, -webkit-max-content);
  cursor: none;
  background-color: #1d1d1d;
}

/* CURSEUR PERSONNALISÉ..................................... */

.cursor {
  height: 15px;
  width: 15px;
  border-radius: 50%;
  cursor: none;
  border: solid 2px orange;
  position: absolute;
  background-color: transparent;
  pointer-events: none;
  z-index: 1;
}
.cursor::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 5px;
  height: 5px;
  border-radius: 50%;
}
.cursor_animation {
  animation: rotation 0.3s;
}
@keyframes rotation {
  0% {
    border: solid 3px white;
    transform: rotate(0deg);
    transform: scale(1);
    box-shadow: 1px 1px 2px rgb(0, 0, 0);
  }
  50% {
    border: dashed 2px white;
    transform: rotate(180deg);
    transform: scale(2);
    box-shadow: 0px 0px 20px rgb(255, 255, 255), 0px 0px 40px rgb(255, 255, 255), 0px 0px 60px rgb(255, 255, 255), 0px 0px 80px rgb(255, 255, 255), 0px 0px 100px rgb(255, 255, 255);
  }
  100% {
    border: solid 3px white;
    transform: rotate(0deg);
    transform: scale(1);
    box-shadow: 1px 1px 2px rgb(0, 0, 0);
  }
}

/* MAIN ...................... */

.main {
  background-color: transparent;
  display: grid;
  grid-template-columns: 65% 35%;
  grid-template-rows: 100%;
  height: 100vh;
  width: 100vw;
  position: relative;
}

/* HEADER.............................. */

.header {
  margin-top: 200px;
  display: flex;
  flex-direction: column;
  width: 100%;
  grid-row-start: 1;
  grid-row-end: 2;
  grid-column-start: 1;
  grid-column-end: 2;
}

.avion {
  height: 30px;
  width: 40px;
}

.header_titles {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  margin-left: 150px;
  justify-content: space-around;
}
.header_title {
  font-family: oswald;
  font-size: clamp(20px, 5vw, 30px);
  font-weight: 100;
  color: #ffffff;
  margin-top: -10px;
}

.header_name {
  color: white;
  font-size: clamp(12px, 3vw, 55px);
  font-family: lato;
  font-weight: 300;
}

.container_developper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.developper {
  font-family: poppins;
  color: #ffffff;
  font-weight: 100;
  transition: 0.2s ease-in-out;
  font-size: clamp(14px, 1vw, 20px);
  /* margin-top: -5px; */
}
.developper:hover {
  color: #cdb8b8;
}
.technos {
  margin-top: 10px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  height: clamp(18px, 5vw, 28px);
  align-items: center;
  z-index: 0;
  gap: 10px;
  margin-left: -10px;
  height: 40px;
  transform: scaleX(-1);
  transition: 3.1s;
  background-color: transparent;
}

.logos:nth-child(1) {
  height: 65%;
}
.logos:nth-child(2) {
  height: 60%;
}
.logos:nth-child(3) {
  height: 83%;
}
.logos:nth-child(4) {
  height: 60%;
}
.logos:nth-child(5) {
  height: 66%;
}
.logos:nth-child(6) {
  height: 66%;
}

/* NAV......................................................... */

.wrapper_nav {
  grid-row-start: 1;
  grid-row-end: 4;
  grid-column-start: 2;
  grid-column-end: 3;
  /* margin-right: -25px; */
}
.nav {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  transition: 0.9s ease-out;
  height: 100%;
  margin-top: 20px;
  align-items: right;
}
.nav_a {
  cursor: none;
  color: #f1f0eb;
  text-decoration: none;
  font-family: lato;
  font-weight: 400;
  font-size: clamp(13px, 1vw, 25px);
  transition: 0.7s ease-in-out;
  text-transform: uppercase;
  transform: scale(1);
  padding: 10px;
  border-radius: 5px;
  text-align: center;
  /* background: linear-gradient(to right, transparent, 40%, #373737); */
  background: linear-gradient(to right, transparent 20%, #373737, transparent 80%);
}
.nav_a:hover {
  color: rgb(255, 255, 255);
  background: linear-gradient(to right, transparent, 20%, #800808);
}
.container_navButtons {
  display: flex;
  flex-direction: row;
  margin-left: 10px;
}
.down,
.up {
  transition: 0.2s ease-in-out;
  color: white;
  background-color: transparent;
  border: none;
  font-size: 40px;
  text-shadow: 0px 0px 70px rgb(255, 255, 255), 0px 0px 40px rgb(255, 255, 255), 0px 0px 60px rgb(255, 255, 255), 0px 0px 80px rgb(255, 255, 255), 0px 0px 100px rgb(255, 255, 255);
}
.down:hover,
.up:hover {
  cursor: none;
}

/* ABOUT..................................................... */

.about {
  display: flex;
  flex-direction: column;
  grid-row-start: 1;
  grid-row-end: 2;
  grid-column-start: 1;
  grid-column-end: 2;
}
.container_about {
  height: 100%;
  margin-left: 150px;
  margin-top: 30px;
}
.wrapper_h2_logos {
  width: 100%;
  display: flex;
  /* flex-direction: column; */
  justify-content: flex-start;
  align-items: center;
  height: 30px;
}

.about_h2 {
  font-weight: bold;
  font-size: clamp(22px, 4vw, 30px);
  font-family: lato;
  /* color: rgb(182, 94, 249); */
  font-weight: 300;
  transform: scale(1);
  transition: 0.4s ease-in-out;
  background-clip: text;
  -webkit-background-clip: text;
  background-image: linear-gradient(to right, #cc95c0, #dbd4b4, #7aa1d2);
  color: transparent;
}
.contact_logos {
  display: flex;
  justify-content: space-between;
  width: 20%;
  height: 40%;
  gap: 20px;
  margin-top: 10px;
  margin-bottom: 30px;
}
.contact_logo {
  color: rgb(255, 255, 255);
  transition: 0.1s ease-in-out;
  text-shadow: none;
  transform: scale() rotate();
  z-index: 0;
  font-size: clamp(10px, 3vw, 24px);
}
.contact_logo:hover {
  color: #eb0b0b;
  /* text-shadow: 0px 0px 1px white; */
  transform: scale(1.5) rotate(3deg);
  /* animation: bounce 0.6s; */
}

.about_h3 {
  width: 90%;
  font-size: clamp(14px, 1vw, 16px);
  font-family: poppins;
  line-height: 25px;
  font-weight: 300;
  color: rgb(210, 210, 210);
  text-align: left;
  transition: 1s ease-in-out;
}
.container_nav {
  display: flex;
}

/* MEDIAQUERIES.................................................................. */

@media screen and (max-width: 700px) {
  body {
    font-size: clamp(14px, 5vw, 18px);
    height: 100vh;
    display: flex;
  }
  .main {
    background-color: transparent;
    display: flex;
    flex-direction: column;
    grid-template-columns: unset;
    grid-template-rows: unset;
    height: 100%;
    width: 100%;
  }
  .header {
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    /* width: 100%; */
  }
  .header_title {
    font-size: 28px;
  }
  .header_titles {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: space-around;
    margin: auto;
  }
  .container_developper {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .technos {
    height: 25px;
    margin: 10px;
  }
  .nav {
    gap: 40px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    margin-top: 20px;
    align-items: none;
    margin-top: 40px;
  }
  .wrapper_nav {
    height: 100%;
  }
  .about {
    display: flex;
    justify-content: center;
  }
  .container_about {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    margin-left: 20px;
    margin-right: 20px;
  }
  .about_h3 {
    font-size: clamp(14px, 1vw, 16px);
    font-family: poppins;
    line-height: 25px;
    font-weight: 300;
    color: rgb(210, 210, 210);
    text-align: center;
    transition: 1s ease-in-out;
  }
  .avion {
    display: none;
  }
  .contact_logo {
    color: rgb(255, 255, 255);
    transition: 0.1s ease-in-out;
    text-shadow: none;
    transform: scale() rotate();
    z-index: 0;
    font-size: clamp(20px, 3vw, 22px);
  }
  .contact_logos {
    margin-top: 10px;
    width: 100%;
    justify-content: center;
  }
  .cursor {
    visibility: hidden;
  }
}

