

body {
  margin: 0;
  min-height: 100vh;
  font-family: sans-serif;
  background: rgb(255, 29, 141);
}
@font-face {
  font-family: "clarafont";
  src: url(AbrilFatface-Regular.woff2) format("woff2");
}
@font-face {
  font-family:"CirrusCumulus" ;
  src: url(CirrusCumulus.otf);
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;

  background-image: url("https://www.transparenttextures.com/patterns/noise.png");
  opacity: 0.08;
  z-index: 1;
}

.container {
  max-width: 1400px;
  margin: auto;
  background-color: transparent;
}

svg {
  width: 100%;
  height: auto;
  aspect-ratio: 1620 /2160;
  display: block;
}

.titredusite {
  position: fixed;
  font-size: 20px;
  top: 20px;
  left: 20px;
  color: white;
  font-family: "clarafont";
}

.apropos {
  position: fixed;
  top: 20px;
  right: 20px;
  color: white;
  font-family: "clarafont";
}



.oeuvre {
  display: flex;
  align-items: flex-start;
  gap: 60px;

  padding: 80px 60px;
}



.colonne-image {
  width: 45%;
}

.colonne-image img {
  width: 100%;
  max-width: 550px;
  height: auto;

  border-radius: 20px;
  object-fit: cover;
  transition: 0.3s ease;
}



.colonne-texte {
  width: 55%;

  display: flex;
  flex-direction: column;
}



.colonne-texte h1 {
  font-size: 50px;
  line-height: 1;
  margin-bottom: 30px;

  text-transform: uppercase;
  letter-spacing: 2px;

  font-family: "clarafont";
}



.colonne-texte h2 {
  font-size: 50px;
  line-height: 1.3;

  margin-bottom: 40px;
  font-family: "CirrusCumulus";
}
.colonne-texte h3{
  font-size : 15px;
  line-height: 1.3 ;
  margin-bottom: 40px;
}


.texte {
  background: white;

  padding: 35px;
  border-radius: 20px;

  line-height: 1.8;
  font-size: 18px;
}



.intro {
  background: white;
  padding: 40px;
  border-left: 5px solid black;
  margin-bottom: 40px;
  width: 300px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  text-align: center;
}

.intro p {
  margin: 0;
  line-height: 1.7;
  font-size: 17px;
}







