*{
    padding: 0;
    margin: 0;
    font-family: "Josefin Sans", sans-serif;
    box-sizing: border-box;
}
body{
    background: linear-gradient(to bottom right, #3c0d0d, #1a1a1a, #2f2f2f);
}
.IMG_9125{
    width: 30%;
}
.apropos{
    width: 100%;
    height: 100vh;
    padding: 78px 0px;
}
.apropos imag{
    height: auto;
    width: 420px;
    border-radius: 20px;
}
.texte-apropos{
    width: 550px;
}
.texte-apropos h1{
    color: white;
    font-size: 60px;
    text-transform: capitalize;
    margin-bottom: 20px;
}
.texte-apropos h5{
    color: white;
    font-size: 30px;
    margin-bottom: 25px;
    letter-spacing: 2px;
}
.texte-apropos p{
    color: #fcf;
    letter-spacing: 1px;
    line-height: 28px;
    text-align: justify;
    font-size: 22px;
    margin-bottom: 45px;
}
.main{
    display: flex;
    width: 1530px;
    max-width: 100%;
    margin: 0 auto;
    align-items: center;
    justify-content: space-around;
}
span{
    color: #f9004d;
}
.butoon-groupe{
    display: flex;
    gap: 15px;
}
button{
    background: #f9004d;
    text-decoration: none;
    color: white;
    font-weight: bold;
    padding: 13px 30px;
    border-radius: 30px;
    transition: .4s;
}
button:hover{
    background: transparent;
    border: 2px solid #f9004d;
}

@media screen and (max-width:768px) {
    .main{
        flex-direction: column;
        align-items: center;
    }
    .main img{
        width: 63%;
        max-width: none;
    }
    .texte-apropos h1{
        font-size: 28px;
    }
    .texte-apropos h5{
        font-size: 20px;
    }
    .texte-apropos p{
        font-size: 14px;
    }
    .texte-apropos{
        width: 80%;
        text-align: center;
    }
    button{
        flex: 1;
        margin: 15px 15px;
    }
}