/*Polices*/
@font-face {
  font-family: "Excon";
  src: url(../assets/polices/Excon-Variable.ttf);
}
img {
  max-width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

* {
  scroll-behavior: smooth;
}

body {
  background-color: #0D0D0D;
  color: #FFFFFF;
  font-family: "Excon";
  font-size: clamp(1rem, 0.9318rem + 0.3636vw, 1.25rem);
  margin: 0;
}

header {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 35px;
  border-bottom: 2px solid white;
}
@media (min-width: 1024px) {
  header {
    padding-bottom: 90px;
  }
}

h1 {
  font-size: clamp(3.125rem, 2.4432rem + 3.6364vw, 5.625rem);
  font-family: "manifold-extd-cf", sans-serif;
  font-weight: 400;
  font-style: normal;
  margin-bottom: 12px;
}
@media (min-width: 1024px) {
  h1 {
    margin-bottom: 0;
  }
}

h2 {
  margin: 0px;
  font-weight: 400;
  font-size: clamp(1rem, 0.9318rem + 0.3636vw, 1.25rem);
}

h3 {
  font-size: clamp(1.4375rem, 1.3352rem + 0.5455vw, 1.8125rem);
}

figure {
  margin: 0;
}

figcaption {
  font-size: clamp(0.6875rem, 0.6193rem + 0.3636vw, 0.9375rem);
}

.intro {
  background-color: #090909;
  box-shadow: 0 0 11.4px #000000;
  padding: 43px 21px;
  font-weight: 500;
  margin-top: 30px;
}
@media (min-width: 1024px) {
  .intro {
    margin-top: 60px;
  }
}

.main {
  margin-inline: 29px;
}

.main--credits {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-block: 5%;
}

section {
  background-color: #090909;
  box-shadow: 0 0 11.4px #000000;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-block: 35px;
  padding-inline: 20px;
}
@media (min-width: 1024px) {
  section {
    margin-block: 65px;
  }
}

@media (min-width: 1024px) {
  .section--margin {
    margin-inline: 220px;
  }
}

.groupe__membres {
  display: flex;
  justify-content: center;
}
@media (min-width: 400px) {
  .groupe__membres {
    gap: 20px;
  }
}

.groupe {
  padding-bottom: 29px;
}

.groupe__pdp {
  width: 97px;
  height: 97px;
  border-radius: 50%;
}
@media (min-width: 800px) {
  .groupe__pdp {
    width: 244px;
    height: 244px;
  }
}

a {
  color: rgb(255, 255, 255);
  text-decoration: none;
  transition: ease 0.3s;
}
a:hover {
  color: rgb(134, 134, 134);
}

.link__underline {
  text-decoration: underline;
  text-underline-offset: 16%;
}

.design__group {
  display: flex;
  flex-direction: column;
  gap: 46px;
  align-items: center;
}
@media (min-width: 1300px) {
  .design__group {
    flex-direction: row;
    gap: 103px;
  }
}

.design__el {
  width: 312px;
  height: 171px;
}

@media (min-width: 1024px) {
  .design__img {
    width: 424px;
    height: 298px;
  }
}

footer {
  font-family: "manifold-extd-cf", sans-serif;
  font-weight: 400;
  font-style: normal;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 1024px) {
  footer {
    gap: 50px;
  }
}

footer ul {
  list-style: none;
  padding: 0;
  display: flex;
  gap: 30px;
  flex-direction: column;
}
@media (min-width: 1024px) {
  footer ul {
    flex-direction: row;
    gap: 100px;
  }
}

small {
  font-size: clamp(0.6875rem, 0.6193rem + 0.3636vw, 0.9375rem);
}

.image__design {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-block: 15px;
}
@media (min-width: 800px) {
  .image__design {
    margin-block: 50px;
  }
}

.back {
  padding: 10px 20px;
  border: 2px solid white;
  border-radius: 8px;
}
.back:hover {
  background-color: rgba(255, 255, 255, 0.588);
  color: black;
}

/*--------------Burger Menu------------*/
@media (max-width: 800px) {
  .menu__toggle {
    position: fixed;
    top: 20px;
    right: 20px;
    cursor: pointer;
    z-index: 20;
    background-image: url(../assets/images/menu.svg);
    background-repeat: no-repeat;
    text-indent: 200%;
    white-space: nowrap;
    overflow: hidden;
    background-position: center;
    background-color: transparent;
    padding: 0;
    border: none;
    right: 10px;
    top: 10px;
    width: 24px;
    height: 24px;
  }

  .menu__liste {
    position: fixed;
    display: flex;
    flex-direction: column;
    padding: 0;
    justify-content: space-evenly;
    align-items: center;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #1e1e1e;
    margin: 0;
    z-index: 10;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
  }

  .menu--open .menu__liste {
    transform: translateX(0);
  }
}
@media (min-width: 800px) {
  .menu__toggle {
    display: none;
  }
}
.nav__liste {
  display: flex;
  list-style: none;
  padding: 43px;
  gap: 84px;
  justify-content: space-evenly;
  margin: 0;
}

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