/*page créée par Ephram Guenaud
  cette page est la page de style pour les pages de disclamer du site
  Le 10 Janvier 2025 */

main {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
}

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

/*le seul block de la page*/
article {
  text-align: center;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  width: 70%;
  height: 80%;
  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;
  padding: 20px;
}

div {
  justify-self: center;
  width: 60%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

a {
  text-decoration: none;
  color: black;
  background-color: #d757f6;
  padding: 30px 30px 30px 30px;
  border-radius: 37px;
  border: 1px black solid;
  font-size: 130%;
}

p {
  font-size: 300%;
}

h1 {
  margin-top: 0px;
  font-size: 400%;
}

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

  body {
    height: 1000px;
  }

  div {
    flex-direction: column;
    justify-content: space-evenly;
    height: 55%;
    width: 200px;
  }

  p {
    font-size: 150%;
  }

  h1 {
    font-size: 200%;
  }

  article {
    font-size: 80%;
    width: 70%;
    height: 70%;
  }

  a {
    padding: 15px;
    margin-top: 10px;
  }
}