:root {
  --font1: "Poppins";
  --font2: "Playfair Display";
  --dark: white;
} 

body {
  margin: 0;
  background-color: black;
  font-family: var(--font1);
  overflow-x: hidden;
}

.flex, .flex__col {
  display: flex;
  justify-content: center;
  align-items: center;
}

.flex__col {
  flex-direction: column;
}

ul {
  margin: 0;
  padding: 10;
  list-style: none;
}

footer {
    background-color: white; /* Set background color for better visibility */
    color: black; /* Set font color to white */
    padding: 10px; /* Optional: Add padding for better spacing */
     display: flex;
    align-items: center;
    justify-content: center;
    height: 40vh; /* Set the height of the footer to 100% of the viewport height */
}


.container {
    max-width: 1200px;
    margin: 100px auto 0 auto;
    padding: 40px;
}

main {
  width: 100%;
}

.menu {
  position: fixed;
  top: 0;
  left: 50%;
  width: calc(100% - 80px);
  justify-content: space-between;
  margin: 40px 0;
  transform: translatex(-50%);
     z-index: 2;
}

.menu a {
  font-size: 1.10vw;
  font-weight: 500;
  color: var(--dark);
  text-decoration: none;
}

.menu ul {
  gap: 20px 60px;
}

.intro {
  position: relative;
  width: calc(100% - 80px);
  min-height: 100vh;
  gap: 80px;
    color: white;
}

.intro p {
  width: 50%;
  font-weight: 520;
  color: inherit;
  font-size: 1.6vw;
  letter-spacing: 1px;
  margin-bottom: 10px;
  line-height: 100%;
  text-transform: full-width;
}

.intro h1 {
  width: 50%;
  font-weight: 600;
     color: inherit;
  font-size: 5.8vw;
    letter-spacing: 1px;
  margin-bottom: 20px;
  line-height: 100%;
  text-transform: uppercase;
}

.intro img {
  position: absolute;
  z-index:1;
  top: 50%;
  right: 50%;
  width: 33%;
  height: auto;
  aspect-ratio: 9/14;
  object-fit: cover;
  opacity: 0.2;
  transform: translateY(-50%);
}

.intro p a {
  color: white;
}

.list__item {
  position: relative;
  width: 100vw;
  height: calc(100vh - 40px);
  align-items: flex-end;
  padding-bottom: 40px;
}

.list__item__title, .list__item__titleOutline {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  font-family: var(--font2);
  font-size: 21vw;
  font-weight: 700;
  line-height: 80%;
  color: var(--dark);
  text-align: center;
  transform: translate(-50%, -50%);
}

.list__item__titleOutline {
  z-index: 3;
  color: transparent;
  -webkit-text-stroke: 2px var(--dark);
}

.list__item img {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  width: 50%;
  height: 100%;
  width: 40%;
  aspect-ratio: 9/14;
  object-fit: cover;
  transform: translate(-50%, -50%);
}

ul.list__item__infos {
  width: calc(100% - 80px);
  justify-content: space-between;
}

.list__item__infos li {
  font-size: 1vw;
}

.list__item__infos li span {
  color: white;
}

.list__item__type, .list__item__project {
  position: absolute;
  top: 50%;
  font-size: 1vw;
  writing-mode: vertical-lr;
  text-orientation: upright;
  transform: translateY(-50%);
  color: white;
}

.list__item__type {
  left: 36px;
}

.list__item__project {
  right: 36px;
}  

@media (min-width: 1900px){
  .list__item__title, .list__item__titleOutline {
    font-size: 450px;
  }

  .list__item img, .intro__img {
    width: auto;
    height: 80%;
  }
}
