.artist-container {
    margin-top: 5px;
    margin-bottom: 25px;
    margin-left: auto;
    margin-right: auto;
    max-width: auto;
    padding: 0px;
    background-color: #00FF00;
    border-radius: 0px;
    box-shadow: 0px 10px 10px -10px rgba(0, 0, 0, 0.5), 0px -10px 10px -10px rgba(0, 0, 0, 0.5);
}

.artist-container h1 {
    font-family: 'Orbitron', Arial, sans-serif; /* Utilise la police Orbitron si disponible, sinon Arial, et en dernier recours une police sans-sérif générique */
    font-weight: bold; /* Met le texte en gras */
}


ul {
    list-style-type: none;
    padding: 0;
    text-align: center; /* Centrer horizontalement le texte */
}

li {
    font-family: Orbitron;
    font-weight: bold;
}

a {
    text-decoration: none;
    color: #000000;
    font-size: 40px;
    transition: color 0.3s;
}

a:hover {
    color: #FFFFFF;
}

.pages a {
    color: #000000;
    font-size: 21px;
}

.pages a:hover {
    color: #00FF00;
}


.footer a {
    color: #000000;
    font-size: 21px;
}

.footer a:hover {
    color: #00FF00;
}

body {
            border: 20px solid #00FF00;
            margin: 0; /* Pour enlever la marge par défaut du corps */
            padding: 0; /* Pour enlever le remplissage par défaut du corps */
        }