.emphase {
  font-size: larger;
  color: rgb(107, 21, 24);
}

.contour-oval {
  border-radius: 50% 50% 50% 50%/50% 50% 50% 50%;
}

.contour-ovoïde {
  border-radius: 50% 50% 50% 50%/60% 60% 40% 40%;
}

.contour-rond {
  border-radius: 50%;
}

.conteneur-image {
  position: relative;
}
.conteneur-image img {
  display: block;
  max-width: 100%;
  height: auto;
}
.conteneur-image::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.conteneur-image.adouci {
  filter: opacity(1);
}
.conteneur-image.adouci::before {
  background-color: rgba(247, 245, 225, 0.1); /* Pour changer couleur et opacité */
}

.fondu {
  opacity: 0;
  animation-name: fonduOpacitéOn;
  animation-duration: 2s;
  animation-delay: 1s;
  animation-fill-mode: forwards;
}

@keyframes fonduOpacitéOn {
  from {
    opacity: 1;
  }
  to {
    opacity: 0.5;
  }
}
@keyframes fonduOpacitéOff {
  from {
    opacity: 0.5;
  }
  to {
    opacity: 1;
  }
}
html, body {
  font-family: "Raleway", Arial, Helvetica, sans-serif;
  margin: 0;
  padding: 0;
}

h1,
h2,
h3 {
  color: rgb(192, 114, 117);
  font-family: "Raleway", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

h1 {
  font-size: 2.2rem;
  margin-bottom: 0;
  margin-top: 0;
}
@media screen and (min-width: 900px) {
  h1 {
    font-size: 4rem;
  }
}

h2 {
  font-size: 1.5rem;
  margin-top: 0;
}
@media screen and (min-width: 900px) {
  h2 {
    font-size: 2em;
  }
}

h3 {
  font-size: 0.8rem;
}
@media screen and (min-width: 900px) {
  h3 {
    font-size: 1.17rem;
  }
}

main {
  display: flex;
  flex-direction: column;
  margin-top: 5rem;
  min-height: calc(100vh - 200px);
}
main h1 {
  text-align: center;
}
@media screen and (min-width: 900px) {
  main {
    margin-top: 7.5rem;
  }
}

header {
  color: rgb(107, 21, 24);
}
header h1 {
  text-align: center;
}
header nav {
  clear: left;
  font-family: "Raleway";
  font-size: 0.9rem;
  margin-left: 1rem;
}
header nav a {
  text-decoration: none;
  color: rgb(107, 21, 24);
}
header nav a:visited {
  color: rgb(107, 21, 24);
}
header nav menu:first-child {
  display: flex;
  flex-flow: row;
  list-style: none;
  padding: 0;
  justify-content: center;
  align-items: center;
}
header nav menu:first-child li:hover {
  text-decoration: overline 1px rgba(107, 21, 24, 0.2);
}
header nav li {
  flex-shrink: 1;
  text-align: center;
  width: 5.5rem;
  height: 1.12rem;
}
header nav li menu {
  display: none;
  flex-wrap: wrap;
  column-gap: 1rem;
  row-gap: 1rem;
  position: absolute;
  top: 10rem;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  justify-content: space-evenly;
  list-style: none;
  padding: 0;
}
header nav li menu li {
  display: flex;
  text-wrap-mode: nowrap;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: fit-content;
}
header nav li menu {
  width: 90%;
}
@media screen and (min-width: 900px) {
  header nav li menu {
    top: 13rem;
    width: 40%;
  }
}
header nav a.active,
header nav a.ancestor {
  font-weight: bold;
}

footer {
  padding-top: 0.75rem;
  padding-bottom: 1.5rem;
  background-color: rgb(255, 200, 36);
  width: 100%;
  text-align: center;
}
footer p {
  margin-top: 0.5rem;
  margin-bottom: 0;
  font-size: 0.9rem;
}
footer #réseauxSociaux {
  padding-top: 0.5rem;
  padding-bottom: 1rem;
}

#langueEtMenu {
  display: flex;
  justify-content: start;
  margin-bottom: 3rem;
}

#menuLangues {
  font-size: 0.9rem;
  margin-left: 0.5rem;
  border: none;
  background: none;
  width: 5rem;
  color: rgb(107, 21, 24);
}
@media screen and (min-width: 900px) {
  #menuLangues {
    top: 2.2rem;
    margin-left: 1rem;
  }
}
#menuLangues a {
  text-decoration: none;
}
#menuLangues a:visited {
  color: rgb(107, 21, 24);
}

#menu-papillons a.active,
#menu-installation a.active,
#menu-calligramme a.active,
#menu-collaborations a.active {
  color: rgb(192, 114, 117) !important;
}
#menu-papillons:hover,
#menu-installation:hover,
#menu-calligramme:hover,
#menu-collaborations:hover {
  text-decoration-color: rgba(192, 114, 117, 0.4);
}

#accueil-papillon-01 {
  width: 100%;
  margin: 0;
  padding: 0;
}

.accueil-portfolio {
  display: flex;
  flex-direction: column;
  padding-top: 5rem;
  padding-bottom: 5rem;
  margin: 0;
  background-color: rgb(253, 118, 63);
}
.accueil-portfolio p {
  color: rgb(255, 238, 188);
  font-size: 1.2rem;
  line-height: 1.5rem;
  text-align: center;
}
@media screen and (min-width: 900px) {
  .accueil-portfolio p {
    font-size: 2.5rem;
    line-height: 2.8rem;
  }
}
.accueil-portfolio h2 {
  text-align: center;
  color: rgb(255, 238, 188);
}
.accueil-portfolio h2 a,
.accueil-portfolio h2 a:visited,
.accueil-portfolio h2 a:hover,
.accueil-portfolio h2 a:active {
  text-decoration: none;
  color: inherit;
}
.accueil-portfolio .conteneur-image {
  align-self: center;
  border-radius: 50%;
  overflow: hidden;
  margin-top: 5rem;
  margin-bottom: 1rem;
  width: 18rem;
  cursor: pointer;
}

@media screen and (min-width: 900px) {
  div.àPropos,
  div.portfolio {
    width: 900px;
    margin-left: auto;
    margin-right: auto;
  }
}

div.àPropos {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 6rem;
  width: 90%;
  text-align: center;
  font-size: 0.9rem;
  color: rgb(42, 42, 42);
}
@media screen and (min-width: 900px) {
  div.àPropos {
    font-size: 1rem;
  }
}
div.àPropos div {
  margin-left: auto;
  margin-right: auto;
  width: 50%;
}
div.àPropos .séparateur {
  margin-top: 4rem;
}
div.àPropos img.signature-ÀPropos {
  width: 3rem;
  margin-top: 4rem;
  margin-bottom: 4rem;
  opacity: 0.76;
}
div.àPropos a {
  text-decoration: none;
  color: rgb(42, 42, 42);
}
div.àPropos a:visited {
  text-decoration: none;
  color: rgb(42, 42, 42);
}
div.àPropos p,
div.àPropos a {
  color: rgb(192, 114, 117);
  font-size: 1.1rem;
}
div.àPropos p.emphase {
  color: rgb(107, 21, 24);
}
div.àPropos table {
  margin-left: auto;
  margin-right: auto;
  margin-top: 2rem;
  margin-bottom: 2rem;
  border-collapse: collapse;
  counter-reset: rowNumber;
}
div.àPropos table th {
  padding-bottom: 1rem;
}
div.àPropos table tbody tr {
  counter-increment: rowNumber;
  text-align: left;
}
div.àPropos table tbody tr td:first-child::before {
  content: counter(rowNumber);
  margin-right: 1rem;
}
div.àPropos table tbody tr td:first-child {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
}

div.portfolio,
div.collaboration {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
div.portfolio h2,
div.collaboration h2 {
  font-family: "Raleway";
}

#menuPortfolio {
  display: flex;
  flex-direction: row;
  column-gap: 1rem;
}

.vignettes {
  display: flex;
  flex-direction: row;
  justify-content: center;
  column-gap: 1.5rem;
  row-gap: 4rem;
  flex-flow: wrap;
  margin-top: 4rem;
  margin-bottom: 3rem;
}
.vignettes label {
  display: none;
}

.vignette {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.vignette:hover {
  font-weight: bold;
  letter-spacing: 2px;
}
.vignette img:not(:hover) {
  opacity: 1;
  animation-name: fonduOpacitéOff;
  animation-duration: 1s;
  animation-fill-mode: forwards;
}
.vignette img:hover {
  opacity: 0;
  animation-name: fonduOpacitéOn;
  animation-duration: 1s;
  animation-fill-mode: forwards;
}
.vignette label {
  margin-top: 0.5rem;
  color: rgb(107, 21, 24);
}

.galerie {
  margin-top: 3rem;
  margin-bottom: 3rem;
  text-align: center;
}
.galerie a {
  text-decoration: none;
}

.vidéo {
  margin-top: 3rem;
  margin-bottom: 3rem;
}
@media screen and (min-width: 900px) {
  .vidéo iframe {
    width: 800px;
    height: 450px;
  }
}

.légende {
  text-align: center;
  margin-bottom: 3rem;
  width: 90%;
  color: rgb(107, 21, 24);
}

#galerie-calligramme a {
  display: block;
  margin-bottom: 4.5rem;
}
@media screen and (min-width: 900px) {
  #galerie-calligramme a {
    display: inline-block;
    margin-left: 1rem;
    margin-right: 1rem;
  }
}

.pswp {
  --pswp-bg: #000000 !important;
}

.pswp__bg {
  opacity: 0.85 !important;
}

.pswp__img,
.pswp__zoom-wrap {
  background-color: #fff !important;
}

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