@media (max-width: 768px) {
    body {
        font-size: 0.95rem;
        padding: 10px;
    }
}

/* Très petits écrans */
@media (max-width: 480px) {
    body {
        font-size: 0.9rem;
            }
}

.photo {
    text-align: center;
        }

.photo img{
    width: 15%;
}
 .texte-entete p{
    font-size: 1.5em;
    color: aliceblue;
    text-align: center;
 }

 .texte-entete2 p{
    font-size: 2.5em;
    color: aliceblue;
    text-align: center;
 }

 
.boutons {
    display: flex;
    flex-wrap: wrap;          /* Permet de passer à la ligne sur petit écran */
    gap: 15px;                /* Espace entre les boutons */
    justify-content: center;   /* Centre les boutons */
    margin: 20px 0;
}

/* Styles communs aux deux boutons */
.boutons button,
.boutons a.btn-telecharger {
    background-color: #8a2be2;
    color: white;
    border: none;
    font-size: 18px;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
    padding: 12px 20px;
    flex: 1 1 200px;          /* Largeur flexible avec minimum 200px */
    max-width: 150px;         /* Largeur max */
    text-align: center;
    display: inline-block;
    transition: 0.3s;
    text-decoration: none;    /* Supprime le soulignement pour <a> */
}

/* Bouton télécharger */
.btn-telecharger {
    background-color: #8a2be2;
    color: white;
    border: none;
    padding: 12px 22px;
    font-size: 18px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    transition: 0.3s;
}

.btn-telecharger:hover {
    background-color: #7524c1;
    transform: scale(1.05);
}
 
.image_bas img{
    max-width: 40%;
}

.image_bas{
    text-align: center;
}

.marquee {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    box-sizing: border-box;
    color: rgb(243, 242, 247);
    font-size: 1.5em;
    font-weight: bold;
}

.marquee span {
    display: inline-block;
    padding-left: 100%;
    animation: defilement 12s linear infinite;
}

@keyframes defilement {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

.titres{
    color: aliceblue;
    font-size: 1.5em;

}
.mes-podcasts p a{
    font-size: 15px;
    color: aqua;
}