body {
  font-family: "Inter", sans-serif;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  background-color: #000000;
  color: #DDDDDD;
  font-size: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

img {
  width: 100%;
}

ul {
  list-style: none;
  padding: 0;
}

a {
  text-decoration: inherit;
  color: inherit;
  cursor: pointer;
}

main {
  max-width: 900px;
  margin: 0 27px 145px 27px;
}

.title {
  color: #FF3C7A;
  font-size: clamp(9.375rem, -2.6rem + 47.9vw, 39.3125rem);
  line-height: 0.8;
  margin: 0;
  font-family: "Passion One", sans-serif;
  font-weight: 400;
  display: flex;
  align-items: center;
  justify-content: center;
}
.title--right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-bottom: 2%;
}
.title--footer {
  rotate: 180deg;
}

.titleTop {
  color: #DDDDDD;
  font-size: clamp(2.235625rem, -3.6201rem + 23.423vw, 16.875rem);
}

.titleBottom {
  color: #989898;
  font-size: clamp(2.235625rem, -3.6201rem + 23.423vw, 16.875rem);
}

.subtitle {
  font-family: "Passion One", sans-serif;
  font-size: clamp(2.25rem, 1.575rem + 2.7vw, 3.9375rem);
  margin: 84px 0 27px 0;
}
.subtitle--none {
  margin-top: 0;
}

.subsubtitle {
  font-size: clamp(1.6875rem, 1.1875rem + 2vw, 2.9375rem);
  color: #FF3C7A;
  margin: 36px 0 20px 0;
}

.bigText {
  font-weight: 700;
}
.bigText--big {
  font-size: 27px;
}

.link {
  text-decoration: underline;
}

.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-top: 63px;
}
.hero__logoContainer {
  display: flex;
  justify-content: center;
}

.menu__button {
  overflow: hidden;
  font-size: 0;
  background-color: transparent;
  border: none;
}
.menu__toggle {
  position: fixed;
  top: 20px;
  right: 25px;
  width: 35px;
  height: auto;
  padding: 6px;
  cursor: pointer;
  z-index: 20;
}
.menu__list {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: #000000;
  margin: 0;
  z-index: 10;
  transform: translateX(100%);
  transition: transform 0.3s ease-in-out;
}
.menu__el {
  color: #DDDDDD;
}
.menu__el--active {
  text-decoration: underline;
}
.menu--open .menu__list {
  transform: translateX(0);
}

@media (max-width: 899px) {
  .no-scroll {
    overflow: hidden;
  }
}
.line {
  border-bottom: 2px solid rgba(225, 225, 225, 0.3);
  padding-bottom: 40px;
}

.logo {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.logo__img {
  width: 80%;
}
.logo__img--line {
  border-bottom: 2px solid rgba(225, 225, 225, 0.3);
}

.slider__list {
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
}
.slider__el {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 63px;
}
.btn__link {
  padding: 15px;
  border-radius: 10px;
  border: 1px solid rgba(225, 225, 225, 0.3);
  background-color: rgba(255, 255, 255, 0.2);
  transition: all 0.2s ease-in-out;
}
.btn__link:hover {
  background-color: rgba(225, 225, 225, 0.1);
}

.footer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

@media (min-width: 700px) {
  .prototype {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 20px;
    align-items: flex-start;
  }

  main {
    margin: 145px 47px 145px 47px;
  }
}
@media (min-width: 900px) {
  .subtitle {
    margin-top: 112px;
  }
  .subtitle--none {
    margin-top: 0;
  }

  .subsubtitle {
    margin-top: 36px;
  }

  .menu {
    display: flex;
    justify-content: center;
  }
  .menu__button {
    display: none;
  }
  .menu__list {
    display: flex;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    position: fixed;
    bottom: 47px;
    right: auto;
    top: auto;
    width: 578px;
    height: 80px;
    transform: translateX(0);
    background-color: #131313;
  }
  .menu__item {
    padding: 15px 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
  }
  .menu__item:hover {
    color: #FF3C7A;
  }
  .menu__item:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background-color: rgba(255, 255, 255, 0.2);
  }

  .logo {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 20px;
    max-width: 900px;
  }
  .logo__img {
    width: 32%;
    border-bottom: none;
  }
  .logo__img--line {
    padding-right: 20px;
    border-right: 2px solid rgba(225, 225, 225, 0.3);
  }

  .code {
    position: relative;
  }
  .code::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../assets/images/groupe.jpg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: right center;
    z-index: -1;
  }
  .code__container {
    margin-right: 48%;
  }

  .footer__credits {
    margin-top: 129px;
  }
}

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