/*page créée par Ephram Guenaud
  cette page est la page de style pour la page de classement du site
  Le 16 Janvier 2025 */

body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  background-image: url(../img/background_image.png);
  background-repeat: repeat;
  background-position: top;
  margin: 0%;
  height: 100vh;
}

/*barre de navigation*/
nav {
  display: flex;
  width: 100%;
  justify-content: center;
}

nav>a {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: 1000ms;
}

nav>a:hover {
  font-size: 120%;
  color: #f2c9fb;
}

nav>a {
  width: 20%;
  height: 29px;
  background: #9c29b7;
  color: #000000;
  border-color: #000000;
  border-width: 1px;
  border-style: solid;
  border-radius: 8px 8px 0px 0px;
  font-family: "Helvetica";
  font-weight: 400;
  font-size: 14px;
  text-align: center;
}

.select {
  width: 20%;
  height: 29px;
  background: #d757f6;
  color: #000000;
  border-color: #000000;
  border-width: 1px;
  border-style: solid;
  border-radius: 8px 8px 0px 0px;
  font-family: "Helvetica";
  font-weight: 400;
  font-size: 14px;
  text-align: center;
}

/*block en dessous de la barre de navigation*/
header {
  text-align: center;
  width: 90%;
  padding: 8px 8px 8px 8px;
  background: #9c29b7;
  border-color: #000000;
  border-width: 1px;
  border-style: solid;
  border-radius: 33px 33px 33px 33px;
}

header>h1 {
  margin-top: 0%;
  margin-bottom: 0%;
  font-size: 400%;
}

header>h2 {
  color: #232323;
  margin-top: 0%;
  margin-bottom: 0%;
  font-size: 330%;
}

/*blocks au centre*/
main {
  display: flex;
  align-items: flex-end;
  height: 100%;
  width: 85%;
}

article>h2 {
  margin-top: 0%;
  margin-bottom: 0%;
  font-size: 200%;
}



article {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: 70%;
  height: 40%;
  padding: 20px 4px 2px 4px;
  background: #9c29b7;
  color: black;
  border-color: #232323;
  border-width: 1px;
  border-style: solid;
  border-radius: 37px 37px 0px 0px;
  font-family: "Helvetica";
  font-weight: 400;
  font-size: 14px;
  line-height: 1.3;
  text-align: left;
}

h2 {
  font-size: 190%;
  text-align: center;
}

p {
  text-align: justify;
  text-align: center;
}

/*pied de page*/
footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  align-items: center;
  width: 90%;
  padding: 8px 8px 8px 8px;
  background: #9c29b7;
  border-color: #000000;
  border-width: 1px;
  border-style: solid;
  border-radius: 73px 73px 0px 0px;
}

.container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 90%;
}

.lien {
  color: pink;
  text-decoration: none;
  transition: 1000ms;
}

.lien:hover {
  color: white;
  font-size: 120%;
}

.etoile {
  box-shadow: 1.5px 1.5px 1.5px 1.5px black;
  width: 60%;
  background-color: white;
  border-radius: 37px;
  margin-bottom: 10px;
}

#premier {
  height: 80%;
  font-size: 120%;
  order: 2;
  background-color: #50D4F1;
}

/*plus de paramètres pour les blocks au centre*/
#sot {
  width: 30%;
}

.etoile img {
  width: 17%;
}

#deuxieme {
  height: 65%;
  font-size: 130%;
  order: 3;
  border-radius: 0px 37px 0px 0px;
  background-color: #FFD700;
}

#troisieme {
  height: 50%;
  font-size: 118%;
  order: 1;
  border-radius: 37px 0px 0px 0px;
  background-color: #C0C0C0;
}

#quatrieme {
  height: 35%;
  font-size: 93%;
  order: 4;
  border-radius: 0px 37px 0px 0px;
  background-color: #CD7F32;
}

h2 {
  width: 100%;
  text-align: center;
}

/*sur tablette*/
@media screen and (max-width: 1900px) {

  img {
    width: 50%;
  }

  body {
    height: 3000px;
  }

  main {
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
    height: 3000px;
  }

  footer {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    align-items: center;
    width: 95%;
    padding: 8px 8px 8px 8px;
    background: #9c29b7;
    border-color: #000000;
    border-width: 1px;
    border-style: solid;
    border-radius: 73px 73px 0px 0px;
  }

  h2 {
    text-align: center;
    font-size: 120%;
    margin: 0%;
    padding: 0%;
  }

  article {
    height: 400px;
    width: 90%;
    justify-content: center;
    align-items: center;
    overflow: auto;
  }

  #premier {
    order: 1;
    border-radius: 37px;
    height: 650px;
    font-size: 130%;
  }

  #deuxieme {
    order: 2;
    border-radius: 37px;
    height: 500px;
    font-size: 130%;
  }

  #troisieme {
    order: 3;
    border-radius: 37px;
    height: 500px;
    font-size: 130%;
  }

  #quatrieme {
    order: 4;
    border-radius: 37px;
    height: 500px;
    font-size: 130%;
  }
}

/*sur téléphone*/
@media screen and (max-width: 600px) {

  img {
    width: 80%;
  }

  
  #sot {
    width: 50%;
  }

  #premier {
    order: 1;
    border-radius: 37px;
    height: 650px;
    font-size: 110%;
  }

  #deuxieme {
    order: 2;
    border-radius: 37px;
    height: 500px;
    font-size: 130%;
  }

  #troisieme {
    order: 3;
    border-radius: 37px;
    height: 500px;
    font-size: 110%;
  }

  #quatrieme {
    order: 4;
    border-radius: 37px;
    height: 500px;
    font-size: 110%;
  }
}