body {
    font-family: Arial, sans-serif;
    background-color: #f0f0f0;
    color: #333;
    margin: 0;
    padding: 20px;
    background-image: url('./background.jpg');
    /* Remplacez par une image de fond spatiale */
    background-size: cover;
    background-attachment: fixed;
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: inherit;
    background-size: inherit;
    background-attachment: inherit;
    filter: blur(5px);
    /* Ajustez la valeur du flou selon vos préférences */
    z-index: -1;
}

p {
    text-align: center;
    font-size: 1.1em;
    color: #dadada;
    margin: 10px 0;
}

h1 {
    color: #ff0000;
    /* Rouge vif pour le titre */
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

h2 {
    color: #ff6600;
    /* Orange pour les sous-titres */
}

ul {
    list-style-type: none;
    padding: 0;
}

li {
    background-color: rgba(255, 255, 255, 0.8);
    margin: 10px 0;
    padding: 15px;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

audio {
    width: 100%;
    margin-top: 10px;
    background-color: rgba(255, 102, 0, 0.7);
    border-radius: 10px;
    padding: 5px;
    border: none;
}

audio::-webkit-media-controls-panel {
    background-color: rgba(255, 102, 0, 0.9);
    border-radius: 10px;
}

audio::-webkit-media-controls-play-button {
    background-color: #ff0000;
    border-radius: 50%;
    padding: 5px;
}

audio::-webkit-media-controls-timeline {
    background-color: #ff9900;
    border-radius: 5px;
}

a {
    display: inline-block;
    margin-top: 10px;
    padding: 8px 16px;
    background-color: #ff0000;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}

a:hover {
    background-color: #cc0000;
}

/* Media Queries pour les appareils mobiles */
@media only screen and (max-width: 600px) {
    body {
        padding: 5px;
        background-image: url('./background-mobile.jpg');
    }

    h1 {
        font-size: 1.5em;
    }

    h2 {
        font-size: 1.2em;
    }

    li {
        padding: 8px;
    }

    p {
        font-size: 1em;
    }
}
