/*header*/
header {
    background-color: black;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}
header nav a {
    margin: 3px;
    color: black;
    /*background: linear-gradient(rgb(255, 119, 0), rgb(244, 155, 5));*/
    padding: 15px 28px;
    border-radius: 12px;
    text-decoration: none;
    border: 2px solid white;
    animation-name: colorTransition; /* Nom de l'animation */
    animation-duration: 4s; /* Durée de l'animation */
    animation-iteration-count: infinite;
    transition: width 2s;
}

@keyframes colorTransition {
    from {background-color: rgb(255, 119, 0);}
    to {background-color: rgb(244, 70, 0);}
}
header nav a:hover {
    padding: 20px 35px;
}

.logo { width: 30%;}
/* body général style*/
body {
    font-family: Arial, Helvetica, sans-serif;
    margin: 0;
}

/*body part 1 #########################*/
.body-part1 {
    display: flex;
    flex-direction: row;
    height: 400px;
    align-items: center;
    text-align: center;
    background: linear-gradient(rgb(255, 119, 0), rgb(244, 70, 0))
}
.body-part1 article {
    flex-basis: 50%;
}
article.art-1-2 {
    width: 80%;
    text-align: justify;
    font-size: 1.3em;
    margin-right: 20px;
}
/*body part 2 ###################################*/
.body-part2 {
    display: flex;
    flex-direction: row;
    height: 400px;
    align-items: center;
    text-align: center;
    background-color: antiquewhite;
}
.body-part2 article {
    font-size: 1.3em;
}
.body-part2 a {
    color: black;
    background: linear-gradient(rgb(255, 119, 0), rgb(244, 70, 0));
    padding: 12px 28px;
    border-radius: 12px;
    margin-top: 15px;
    border: 2px solid rgb(0, 0, 0);
    text-decoration: none;
}
.chant {
    width: 60%;
}
/*body part 3 ###############################*/
.body-part3 {
    display: flex;
    flex-direction: row;
    align-items: center;
    text-align: center;
    background-color: black;
}
.reader2 {
    color: white;
    font-size: 1.3em;
    text-align: center;
    align-items: center;
    margin-left: 20px;
}
.reader {
    width: 50%;
}
/* body-part4 ###########################*/
.body-part4 {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    background-color: antiquewhite;
}
.art-left {
    align-items: center;
    text-align: center;
    font-size: 1.3em;
    width: 50%;
}
.art-right {
    width: 50%;

}
.appel-andro {
    width: 20%;

}
.sc-phone {
    width: 100%;
}
/*footer #############################*/
footer {
    background-color: rgb(0, 0, 0);
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    height: 150px;
}
footer p {
    justify-content: center;
    color: white;
    border-radius: 50%;
    font-size: 1.2em;
}
footer p:hover {
    background-color: rgb(121, 87, 152);
    padding: 15px 35px;
}
footer nav {
    display: flex;
    flex-direction: column;
    margin-right: 30px;
}
footer nav a {
    color: white;
}