h2 {
    font-size: 50px;
    text-align: center;
}

main {
    margin-bottom: 50px;
}

.dashmed-para {
    box-shadow: 2px 1px 10px rgba(0, 0, 0, 0.2);
    border-radius: 20px;
    margin: 0 8%;
    padding: 20px 25px;
    text-align: justify;
}

.dashmed-para-title {
    font-weight: bold;
    font-style: italic;
    font-size: 20px;
    text-align: left;
}

.bomberman-para {
    box-shadow: 2px 1px 10px rgba(0, 0, 0, 0.2);
    border-radius: 20px;
    margin: 0 23%;
    padding: 20px 25px;
    margin-bottom: 100px;
}

.etapes {
  background-color: #1e1e1e;
  color: #dcdcdc;
  padding: 10px 15px;
  border-radius: 6px;
  font-family: "Courier New", monospace;
  font-size: 14px;
  overflow-x: auto;   /* active le scroll horizontal si nécessaire */
  white-space: nowrap; /* empêche le retour à la ligne */
}

@media (max-width: 1500px) {

    .bomberman-para {
        margin: 0 15%;
    }
}

@media (max-width: 800px) {

    .bomberman-para {
        margin: 0 8%;
    }

    h2{
        font-size: 35px;
    }
}


/* IMAGES */


.titre-dashmed-img {
    max-width: 400px;
}

@media (max-width: 500px) {

    .titre-dashmed-img {
        max-width: 250px;
    }
}

.captures-dashmed {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.captures-dashmed img {
    max-width: 100%;
    width: 300px;
    height: auto;
    flex: 1 1 300px;
}