@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap");
@import url("https://use.typekit.net/vin1lwy.css");
* {
  margin: 0;
}

h1 {
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  font-size: 19rem;
}

h2 {
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  font-size: 1.17rem;
}

h3 {
  font-family: "Manrope", sans-serif;
  font-weight: 600;
}

a {
  text-decoration: none;
}

hr {
  border: none;
  height: 1.5px;
  background-color: black;
  margin: 10px auto;
}

body {
  font-family: "Manrope", sans-serif;
}

/*BARRE DE NAVIGATION*/
#menu-button {
  width: 1.2rem;
  aspect-ratio: 1;
  padding: 0;
  border: none;
  position: fixed;
  top: 1rem;
  right: 1rem;
  z-index: 2;
  background: none;
  cursor: pointer;
  display: none;
}
#menu-button div {
  width: 100%;
  height: 2px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: black;
}
#menu-button div::before, #menu-button div::after {
  content: "";
  width: 100%;
  height: 2px;
  position: absolute;
  left: 0;
  background: black;
  transition: 0.3s;
}
#menu-button div::before {
  bottom: 250%;
  transition: 0.3s;
}
#menu-button div::after {
  top: 250%;
  transition: 0.3s;
}
#menu-button.active div {
  transform: translate(-50%, -50%) rotate(45deg);
}
#menu-button.active div::before, #menu-button.active div::after {
  top: 0;
  bottom: 0;
}
#menu-button.active div::before {
  transform: rotate(-90deg);
}

.nav {
  width: calc(100% - 3rem);
  background: white;
  position: fixed;
  z-index: 1;
  top: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  font-family: "Manrope", sans-serif;
  font-weight: 500;
  backdrop-filter: blur(5px);
}
.nav a {
  color: black;
}
.nav__list {
  padding-right: 2rem;
  padding-left: 0;
  display: flex;
  flex: 1;
  justify-content: end;
  gap: 2rem;
  list-style-type: none;
}
.nav__list a {
  color: black;
  border-bottom: 2px solid transparent;
  transition: border-color 0.3s ease-in-out;
}
.nav__list a:hover, .nav__list a.active {
  border-color: black;
}
.nav img {
  width: 1.5rem;
  animation: rotate 5s linear infinite;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
/*HEADER*/
.header {
  display: flex;
  position: relative;
  align-items: end;
  padding-top: 20rem;
}
.header p {
  padding-bottom: 5.5rem;
}

footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
}
footer .__left {
  display: flex;
  column-gap: 2rem;
}
footer img {
  width: 1.5rem;
  animation: rotate 5s linear infinite;
}
footer a {
  color: black;
}

@media screen and (max-width: 1200px) {
  .header h1 {
    font-size: 12rem;
  }
  .header p {
    padding-bottom: 3.5rem;
  }
}
@media screen and (max-width: 767px) {
  .header h1 {
    padding-left: 1.2rem;
    font-size: 4.5rem;
  }
  .header p {
    padding-bottom: 1rem;
  }
  footer {
    padding: 1rem 1rem;
  }
  footer .__left {
    column-gap: 0.5rem;
  }
  footer .__right {
    text-align: right;
  }
  footer .__right__name {
    display: none;
  }
}
@media screen and (max-width: 550px) {
  #menu-button {
    display: block;
  }
  .nav {
    height: 3rem;
    padding-top: 0;
    padding-bottom: 0;
    overflow: hidden;
    transition: 0.3s;
    background: white;
  }
  .nav > a {
    position: absolute;
    bottom: 1.5rem;
    left: 1rem;
    transform: translateY(50%);
    transition: 0.3s;
    z-index: 3;
  }
  .nav__list {
    width: 100%;
    height: 100vh;
    padding-right: 0;
    position: absolute;
    left: 0;
    top: 0;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .nav img {
    top: 1rem;
    left: 1rem;
    position: absolute;
    transition: 0.3s;
    opacity: 0;
  }
  .nav--active {
    height: 100vh;
  }
  .nav--active > a {
    left: 50%;
    transform: translate(-50%, 50%);
  }
  .nav--active img {
    opacity: 1;
  }
}
.presentation {
  display: flex;
  align-items: center;
  justify-content: space-between;
  column-gap: 5rem;
  padding-top: 8rem;
  padding-left: 4rem;
  padding-right: 4rem;
}
.presentation__name {
  line-height: 4.5rem;
  padding-top: 2rem;
  text-align: center;
}
.presentation__name h1 {
  font-size: 10rem;
}
.presentation__name p {
  font-family: "contempora-script", sans-serif;
  font-size: 3rem;
  color: black;
  text-shadow: -1px -1px 0 white;
}
.presentation__info {
  display: flex;
  column-gap: 5rem;
}
.presentation__info__row {
  display: flex;
  column-gap: 5rem;
}
.presentation__info a {
  color: black;
}

.graphic {
  padding: 5rem 4rem;
}
.graphic__info {
  font-weight: 600;
  color: #FCAD26;
  padding-top: 1rem;
}
.graphic__info__light {
  font-weight: 400;
}

.picture img {
  animation: bounce 1.5s infinite alternate ease-in-out;
  width: 9rem;
  border-radius: 0.5rem;
}

@keyframes bounce {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(10px);
  }
}
@media screen and (max-width: 1250px) {
  .presentation {
    display: flex;
    flex-direction: column;
    column-gap: 5rem;
    padding-top: 4rem;
    padding-left: 0rem;
    padding-right: 0rem;
  }
  .presentation__info {
    display: flex;
    padding: 2rem 2rem;
    column-gap: 3.5rem;
  }
}
@media screen and (max-width: 767px) {
  .presentation {
    padding-right: 0rem;
  }
  .presentation__name {
    line-height: 2.9rem;
  }
  .presentation__name h1 {
    font-size: 6rem;
  }
  .presentation__name p {
    font-size: 2.5rem;
  }
  .presentation__info {
    display: flex;
    flex-direction: column;
    row-gap: 1.5rem;
    padding: 3rem 2rem;
  }
  .presentation__info__row {
    display: flex;
    column-gap: 2rem;
  }
  .graphic {
    padding: 3rem 1.2rem;
  }
  .picture img {
    animation: none;
    width: 100%;
    height: 35rem;
    border-radius: 0%;
  }
}
main .container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 15rem 15rem 15rem 15rem 15rem 15rem;
  column-gap: 0.5rem;
  row-gap: 0.5rem;
  width: 90vw;
  margin: auto;
  padding: 5rem 0rem;
}
main .container__1 {
  grid-row: 1/3;
}
main .container__4 {
  grid-row: 2/4;
}
main .container__6 {
  grid-row: 3/5;
}
main .container__7 {
  grid-row: 3/5;
}
main .container__9 {
  grid-row: 5/7;
}
main .container__10 {
  grid-row: 5/6;
}
main .container__12 {
  grid-row: 5/7;
}
main img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 767px) {
  main .container {
    display: flex;
    flex-direction: column;
  }
}
.project {
  padding: 8rem 4rem;
}
.project__name {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.project__name h1 {
  font-size: 10rem;
  text-align: center;
}
.project__description {
  display: flex;
  align-items: center;
  padding-top: 2rem;
  column-gap: 5rem;
}
.project__description__presentation {
  width: 50%;
}
.project__description__info {
  display: flex;
  flex-direction: column;
  row-gap: 2rem;
}
.project__googledrive {
  text-align: center;
  padding-top: 4rem;
}
.project__googledrive a {
  color: black;
  font-weight: 600;
  border-bottom: 2px solid transparent;
  text-decoration: none;
  transition: border-color 0.3s ease-in-out;
}
.project__googledrive a:hover {
  border-color: black;
}
.project__image {
  padding-top: 4rem;
  display: flex;
  flex-direction: column;
  column-gap: 0.5rem;
  row-gap: 0.5rem;
}
.project__image__column {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.project__image__row {
  display: flex;
  align-items: center;
  row-gap: 0.5rem;
}
.project__image__row img {
  width: 50%;
}
.project__image p {
  padding: 2rem 0rem;
  text-align: center;
  font-family: "Manrope", sans-serif;
}
.project__image p span {
  font-weight: 800;
}
.project__ambiancecontainer {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 4rem;
  gap: 7px;
}
.project__ambiancecontainer p {
  font-weight: 600;
}
.project__ambiancecontainer audio {
  width: 100%;
  max-width: 300px;
  margin-top: 10px;
}

@media screen and (max-width: 1023px) {
  .project__name h1 {
    font-size: 7rem;
  }
  .project__googledrive {
    text-align: center;
    padding-top: 4rem;
  }
  .project__googledrive a {
    color: black;
    border-bottom: 2px solid black;
    text-decoration: none;
  }
}
@media screen and (max-width: 767px) {
  .project {
    padding: 4rem 1.2rem;
  }
  .project__name h1 {
    font-size: 4rem;
  }
  .project__description {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-top: 2rem;
    column-gap: 5rem;
  }
  .project__description__presentation {
    width: 100%;
  }
  .project__description__info {
    padding-top: 3rem;
    display: flex;
    flex-direction: row;
    column-gap: 5rem;
  }
  .project__image {
    padding-top: 3rem;
  }
  .project__image__row {
    display: flex;
    flex-direction: column;
  }
  .project__image__row img {
    width: 100%;
  }
  .project__image p span {
    font-weight: 800;
  }
}

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