/*page créée par Ephram Guenaud
  cette page est la page de style pour la page d'Accueil du site
  Le 10 Janvier 2025 */

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

/*barre de navigation en haut*/
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: 400%;
}

/*les block au milieu de la page*/
article {
  text-align: 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 37px 37px;
  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%;
}

/*pour les téléphones*/
@media screen and (max-width: 479px) {
  body {
    height: 1000px;
  }

  main {
    flex-direction: column;
    justify-content: space-evenly;
    height: 1000px;
    overflow: auto;
  }

  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;
  }

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

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