@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");

body {
  padding: 0;
  margin: 0;
  background-color: rgba(39, 152, 213, 0.63);
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
}

.tout {
  width: 80%;
  max-width: 1500px;
  background-color: aliceblue;
  margin-top: 18px;
  border-radius: 0.8rem;
  padding: 20px;
  position: relative;
}

.images {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.logo_graph {
  padding-top: 20px;
  width: 12rem;
}

.logo_txt {
  padding-top: 16px;
  width: 32rem;
  max-width: 90%;
}

.texte {
  display: flex;
  flex-direction: column;
  align-items: center;
}

h1,
h2 {
  color: #2798d5;
}

h1 {
  margin-bottom: 0;
  margin-top: 40px;
}

h2 {
  margin-top: 0;
  margin-bottom: 40px;
}

ul {
  display: flex;
  flex-direction: row;
  justify-content: center;
  padding-left: 0;
  flex-wrap: wrap;
}

li {
  margin: 10px 20px;
  font-weight: 400;
  font-size: 1.5rem;
}

::marker {
  color: #1853a0;
}

p {
  text-align: center;
  font-size: larger;
  padding-bottom: 20px;
}

/* Responsive adjustments */

/* Mobile (max-width: 600px) */
@media (max-width: 600px) {
  .tout {
    width: 90%;
    padding: 15px;
  }

  .logo_graph {
    width: 10rem;
  }

  .logo_txt {
    width: 20rem;
  }

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.2rem;
  }

  li {
    font-size: 1.2rem;
    margin: 10px;
  }

  p {
    font-size: 1rem;
  }
}

/* Tablet (max-width: 768px) */
@media (max-width: 768px) {
  .logo_graph {
    width: 10rem;
  }

  .logo_txt {
    width: 25rem;
  }

  h1 {
    font-size: 1.8rem;
  }

  h2 {
    font-size: 1.4rem;
  }

  li {
    font-size: 1.3rem;
  }

  p {
    font-size: 1.1rem;
  }
}
