/*
* ce fichier permet d'afficher correctement la page de combats
*/
div{
    display: flex;
    text-align: justify;
    align-content: space-around;
    align-items: center;
    padding-left: 50px;
    padding-right: 50px;
}
p{
    padding: 50px;
}

.combat{
    padding: 50px;
    background-color: rgb(138, 74, 2);
    border-radius: 20px;
    color: rgb(255, 255, 255);
    border-top: solid orange;
    border-bottom: solid rgb(124, 82, 4);
    font-size: 20px;
}

.combatant{
    width: 350px;
    padding-left: 20px;
    padding-right: 20px;

}
iframe{
    width: 600px;
    height: 300px;
}

/*
* mediaqueries
*/
@media screen and (max-width: 1400px) {
    iframe{
        display: none;
    }

    .contenu{
        display: flex;
        flex-direction: column;
    }

    .contenu_inverse{
        display: flex;
        flex-direction: column-reverse;
    }

    .combatant{
        padding-bottom: 20px;
        padding-top: 20px;
    }
    
}