/* Style de base pour le corps */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 20px;
    background-color: #f4f4f4;
}

/* Style pour le lien de navigation */
a {
    color: #007BFF;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Style pour chaque artiste */
.artiste {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: rgba(14, 30, 37, 0.12) 0px 2px 4px 0px, rgba(14, 30, 37, 0.32) 0px 2px 16px 0px;
    padding: 20px;
    margin-bottom: 20px;
    transition: transform 0.2s;
}

.artiste:hover {
    transform: translateY(-5px);
}

/* Style pour les images */
.artiste img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

/* Style pour les titres */
.artiste h2 {
    margin-top: 0;
}

/* Style pour les paragraphes */
.artiste p {
    margin: 10px 0;
}

.artiste .justifie {
    text-align: justify;
}

/* Style pour les formulaires */
.artiste form {
    margin-top: 20px;
}

/* Bouton de mise à jour de la visibilité */
.artiste form input[type="submit"] {
    background-color: #83A697;
    color: #fff;
    border: none;
    box-shadow: rgba(14, 30, 37, 0.12) 0px 2px 4px 0px, rgba(14, 30, 37, 0.32) 0px 2px 16px 0px;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.artiste button {
    background-color: #83A697;
    margin-top: 20px;
    color: #fff;
    border: none;
    box-shadow: rgba(14, 30, 37, 0.12) 0px 2px 4px 0px, rgba(14, 30, 37, 0.32) 0px 2px 16px 0px;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.artiste form input[type="submit"]:hover {
    background-color: #83A697;
}

/* Style adaptatif pour les petits écrans */
@media (max-width: 600px) {
    body {
        padding: 10px;
    }

    .artiste {
        padding: 15px;
    }

    .artiste h2 {
        font-size: 1.2em;
    }

    .artiste p {
        font-size: 0.9em;
    }
}
