/* -------- Smarphones en mode portrait -------- */
@media screen and (max-width: 500px) { 
    /* @media (orientation: portrait){ */
    
        body, html {
            height: 100%;
            margin: 0;
        }
        .background {
            background-image: url('../img/UnjourMonPrinceAFFICHE.jpg');
            background-size: cover; /* Redimensionne l'image de fond pour couvrir l'écran */
            background-position: center; /* Centre l'image de fond */
            background-repeat: no-repeat; /* Empêche la répétition de l'image */
            height: 100%;
            width: 100%;
        }
        #audioContainer {
            width: 80%;
            top: 65%;
        }
        .annonce {
            font-size: 24px;
        }
        .crlf {
            display: inline-block;
        }

    }
    
    /* -------- Smarphones en mode paysage ou tablettes ou ordi -------- */
    @media screen and (min-width: 501px) { 
    /* @media (orientation: landscape) { */
        html {
            background-image: url('../img/UnJourMonPrinceCARRE.jpg');
            background-size: contain; /* Redimensionne l'image pour qu'elle soit entièrement visible */
            background-position: center; /* Centre l'image */
            background-repeat: no-repeat; /* Empêche la répétition de l'image */
            background-color: #050a06;
            height: 100%;
            width: 100%;
        }
        #audioContainer {
            width: 400px;
            bottom: 25%; 
        }
        .annonce {
            font-size: 24px;
        }
        .crlf {
            display: none;
        }
    }

    /* -------- All screen sizes -------- */
    #containerMain {
        width: 100%;
        height: 100%;
        margin: 0;
        text-align: center;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    #audioContainer {
        position: absolute;
        text-align: center;
        z-index: 1;
    }
    
    #audioCtrl {
        width: 80%;
    }
    .social-icons {
        text-align: center; /* Centrer les icônes */
        padding-top: 10px;
    }
    .social-icons a {
        margin: 20px ; /* Ajouter un espace entre les icônes */
        text-decoration: none;
        color: #000; /* Couleur des icônes */
        /* font-size: 24px; /* Taille des icônes */
        font-size: 30px; /* Taille des icônes annonce*/
    }
    .annonce {
        background-color: #dddece;
        font-family: Arial, Helvetica, sans-serif;
        color: black;
        border-radius: 20px;
        /* margin-left: 2em;
        margin-right: 2em; */
        padding-top: 0.5em;
        padding-bottom: 0.5em;
        border-style: none;
    }
    .annonce a {
        text-decoration: none;
        color: black;
        margin-bottom: 5px;
    }