/*Matias Serrano Grilo
  Le 09 janvier 2025
  Projet du module 293 page des style css de la page "tuto_wheeling"
  */
h1 {
  text-align: center;
  font-size: 5em;
  padding: 30px;
}

p {
  text-align: center;
  margin-left: 15%;
  margin-right: 15%;
  margin-bottom: 150px;
}

img {
  width: 300px;
}

#tuto {
  display: flex;
  flex-wrap: wrap;
  text-align: center;
  justify-content: center;
  align-items: center;
  list-style-position: inside;
}

#tuto li {
  font-size: 1.5em;
}

#tuto div {
  width: 40%;
  padding: 30px;
}

#popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: white;
  padding: 20px;
  border: 5px solid black;
  border-radius: 15px;
  text-align: center;
}

#overlay {
  position: fixed;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

.close-btn {
  padding: 20px 30px;
  background-color: red;
  color: white;
  border: none;
  cursor: pointer;
  border-radius: 5px;
}

@media screen and (max-width: 1000px) {
  #tuto div {
    width: 80%;
  }

  img {
    width: 200px;
  }

  h1 {
    font-size: 3em;
  }

  p {
    font-size: 1.5em;
  }

  #tuto li {
    font-size: 1em;
  }

  #popup {
    width: 100%;
    height: 50%;
  }

  ol {
    padding: 0%;
  }

}