/* La partie centrale de la page "Le MMA" */

.main_mma {
    display: flex;
    flex-direction: column;
    row-gap: 50px;
    background-image: url("../../images/mma.png");
    background-size: 100%;
    background-repeat: no-repeat;
    background-attachment: fixed;
    border: 2px solid white;
    border-radius: 15px;
}

.div {
    background-color: rgb(3, 1, 32);
    border: solid white 2px;
    border-radius: 15px;
    width: 80%;
    margin-left: 8%;
    padding: 15px;
}

/* Police des titres et textes */
@font-face {
    font-family: titleH2;
    src: url(../../fonts/ARABOLIC.TTF);
}
@font-face {
    font-family: titleH3;
    src: url(../../fonts/ARABOLIC.TTF);
}
h2{
    color: white;
    text-align: center;
    font-family: titleH2;
    font-size: 350%;
    text-shadow: 3px 3px 3px black;
}
h3 {
    color: white;
    text-align: center;
    font-family: titleH3;
    font-size: 180%;
}
p {
    color: white;
    text-align: center;
    font-family:cursive, Verdana, Geneva, Tahoma, sans-serif;
    font-size: large;
}