body {
  margin: 0;
  min-height: 100vh;
  font-family: sans-serif;
  

  background: grey
}

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: 1100px;
    margin: auto;
    background-color: transparent;
}

.titredusite {
  position: fixed;
  top:20px;
  left: 20px;
  color: white;
}
.apropos  {
  position: fixed;
  top:20px;
  right: 20px;
  color: white;
}

h1 {
    font-size: 42px;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: "Affigere", sans-serif;
}
.oeuvre {
      display: flex;
    justify-content: space-between;
    align-items: flex-start;

    padding: 60px;
}
.colonne-image {
    width: 50%;
}
.colonne-image img {
    width: 100%;
    max-width: 500px;

    border-radius: 20px;
}
.colonne-texte {
    width: 50%;

    display: flex;
    flex-direction: column;
}
.colonne-texte h1 {
    font-size: 60px;
    margin-bottom: 40px;
}

.colonne-texte h2 {
    font-size: 35px;
    line-height: 1.2;
}

.oeuvre img {
    width: 450px;
    border-radius: 20px;
}



img {
    width: 420px;
    height: 520px;
    object-fit: cover;
    border-radius: 20px;
    transition: 0.3s ease;
    background-color: transparent;
}

.infos {
      margin-top: 40px;
}

h2 {
    font-size: 28px;
    margin-bottom: 20px;
}

.infos p {
    font-size: 22px;
}

.texte {
    background: white;
    padding: 30px;
    border-radius: 20px;
    line-height: 1.8;
}

h3 {
    margin-top: 0;
    font-size: 24px;
}


.intro {
    background: white;
    padding: 20px;
    border-left: 5px solid black;
    margin-bottom: 40px;
    max-width: 700px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

.intro p {
    margin: 0;
    line-height: 1.7;
    font-size: 17px;
}
.intro:hover {
  background: rgb(214, 116, 132);
  transition: 0,3s;
}
.intro:hover p {
  color: white;
}

.infos h2 {
    font-size: 45px;
    margin-bottom: 20px;
}