@charset "UTF-8";
@import url("../font/fonts.css");
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  scroll-behavior: smooth;
}

body {
  background-image: linear-gradient(90deg, #0A0A0A 1px, transparent 1px), linear-gradient(180deg, #0A0A0A 1px, #0F0F0F 1px); /* Lignes horizontales */
  background-size: 20% 20%;
  background-position: 0 0, 0 0;
  background-attachment: fixed;
  width: 100%;
  overflow-x: hidden;
}
body br {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
body hr {
  width: 100%;
  border: none; /* Enlève les bordures par défaut */
  border-top: 1px solid #FBFBFB; /* Ligne de 2px, noir */
}
body p, body h1, body h2 {
  font-family: "Helvetica";
  color: #FBFBFB;
  line-height: 1.5;
}
body p::-moz-selection, body h1::-moz-selection, body h2::-moz-selection {
  background-color: yellow;
  color: #0F0F0F;
}
body p::selection, body h1::selection, body h2::selection {
  background-color: yellow;
  color: #0F0F0F;
}
body #presentation {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 75vh;
  gap: 3.5rem;
  padding: 2rem;
  position: relative;
  overflow: hidden;
}
body #presentation #titles {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
body #presentation #titles .global {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
body #presentation #titles .global #italic {
  font-weight: 200;
  font-style: italic;
}
body #presentation #titles .global #small {
  font-size: 0.8rem;
  font-weight: 100;
  text-transform: uppercase;
  letter-spacing: 5px;
}
body #presentation #titles .global p {
  font-size: clamp(2rem, 5vw, 60px);
  font-weight: 600;
  text-transform: uppercase;
  line-height: 1;
}
body #presentation #tags {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}
body #presentation #tags a {
  text-decoration: none;
}
body #presentation #tags .tag {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 0.6rem 2rem;
  border-radius: 3.5rem;
  transition: 0.3s;
}
body #presentation #tags .tag p {
  font-weight: 300;
  text-transform: uppercase;
  font-size: 0.8rem;
  transition: 0.3s;
}
body #presentation #tags #un {
  border: 1px solid #FBFBFB;
}
body #presentation #tags #un:hover {
  border-color: #A6A6A6;
}
body #presentation #tags #un:hover p {
  color: #A6A6A6;
}
body #presentation #tags #un p {
  color: #FBFBFB;
}
body #presentation #tags #deux {
  background-color: #FBFBFB;
}
body #presentation #tags #deux:hover {
  background-color: #A6A6A6;
}
body #presentation #tags #deux:hover p {
  color: #2C2C2C;
}
body #presentation #tags #deux p {
  color: #0F0F0F;
}
body .imgfull {
  padding: 1.2rem;
  display: flex;
  align-items: center;
}
body .imgfull .main-img {
  position: relative;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 70vh;
  background-size: 120% auto;
  background-position: center;
  background-repeat: no-repeat;
  transition: background-size 0.3s ease-out;
}
body .contenu {
  display: flex;
  flex-direction: column;
  padding: 1.2rem;
}
body .contenu #title {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 6.25rem;
  padding-bottom: 2rem;
  width: 100%;
}
body .contenu #title h1 {
  font-size: clamp(2.5rem, 7vw, 100px);
  font-weight: 200;
  text-transform: uppercase;
  width: 50%;
  line-height: 1;
}
body .contenu #textdroite {
  width: 100%;
  display: flex;
  justify-content: flex-end;
}
body .contenu #textdroite .right {
  width: 50%;
}
body .contenu #textdroite .right p {
  font-weight: 200;
  font-size: 0.8rem;
}
body .contenu #center {
  width: 100%;
  display: flex;
  justify-content: center;
}
body .contenu #center .center {
  width: 50%;
}
body .contenu #center .center p {
  font-weight: 200;
  font-size: 0.8rem;
}
body .contenu .paragraph {
  padding: 3.5rem 0;
}
body .contenu #textgauche {
  width: 100%;
  display: flex;
  justify-content: flex-start;
}
body .contenu #textgauche .left {
  width: 50%;
}
body .contenu #textgauche .left p {
  font-weight: 200;
  font-size: 0.8rem;
}
body .imgdeux {
  display: flex;
  width: 100%;
  height: auto;
  padding: 1.2rem;
  gap: 1.2rem;
  align-items: flex-start;
}
body .imgdeux .imgfifty {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  justify-content: center;
  align-items: center;
  display: block;
}
body .imgdeux .imgfifty img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 80%;
  -o-object-fit: contain;
     object-fit: contain;
  transition: 0.5s;
  vertical-align: bottom;
}
body .imgdeux .imgfifty img:hover {
  transform: scale(1.02);
  transition: 0.5s;
}
body .imgdeux .imgfifty video {
  width: 50%;
  height: auto;
  aspect-ratio: 16/9;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.5s;
  display: block;
  margin: auto;
}
body .imgdeux .imgfifty video:hover {
  transform: scale(1.02);
  transition: 0.5s;
}/*# sourceMappingURL=project.css.map */