/*Louis Huu Lâm CSS pour la page d'introduction sur le site web, le 15 Janvier 2025*/
body {
  margin: 0px;
  width:100%;
  height:100%;
}
h2 {
  font-size: 12px;
}
a {
  color: aqua;
}
.upperContainer {
  display: flex;
  font-family: "Papyrus", fantasy;
  align-items: center;
  justify-content: center;
  gap: 30px;
}
.partieEnNoir {
  background-color: #303030;
  display: flex;
  flex-direction: row;
  color: white;
  border: 1px solid black;
  padding-bottom: 500px;
}
article {
    margin: 70px;
    margin-left: 100px;
}
nav {
    background-color: #444444;
    padding-right: 40px;
  }
img {
  width: 200px;
  height: auto;
}
#time {
  text-align: center;
  font-size: 14;
  font-style: oblique;
}
@media screen and (max-width: 1200px) and (min-width: 230px) {
  #firstOne, #secondOne {
    opacity: 0;
  }
  nav {
    width: 135px;
    height: 500px;
    padding-right: 20px;
  }
  article {
    margin: 55px;
    margin-left: 20px;
  }
}
@media screen and (max-width: 500px) {
  #thirdOne, #lastOne {
    opacity: 0;
    width: 0%;
    height: 0%;
  }
  .upperContainer {
    background-image: url("../images/introduction/snow_cultist_rustytape.jpg");
    background-size: cover;
  }
  .upperContainer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 500px;
    height: 380px;
    background-color: rgba(0, 0, 0, 0.4);
  }
  .upperContainer h1 {
    position: relative;
    z-index: 1;
  }
  nav {
    width: 135px;
    height: 500px;
    padding-right: 10px;
  }
  article {
    margin: 40px;
    margin-left: 10px;
  }
}
