/*----------------------------------*/
/*             Base                 */
/*----------------------------------*/



* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

footer {
    height: 100px;
    background-color: #222;
    text-align: right;
}


/* ----------------------- */
/*      Mise en page       */
/* ----------------------- */



.conteneur {
    width: 90%;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.conteneur2 {
    width: 90%;
    margin: auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 20px;

}

.fluide {
    width: 100%;
    height: auto;
}

.espace-pied-page {
    height: calc(100vh - 560px);
}

h2 {
    margin-bottom: 20px;
}

h4 {
    margin-bottom: 10px;
}

form div {
    padding-top: 20px;
}

form input {
    margin-top: 20px;
    color: #6f00ff;
}



/* ----------------------- */
/*         Modules         */
/* ----------------------- */



.banniere {
    background-image: url(../images/banner-guitar.jpg);
    height: 400px;
    background-size: cover;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.pied-de-page-copyright {
    line-height: 100px;
    margin-top: 40px;
    padding-right: 50px;
    color: white;
}

.banniere-titre {

    margin: 0;
    font-size: 3em;
    color: white;
    padding-left: 50px;
}

.accueil-lien {
    margin-right: 50px;
    background-color: gray;
    border: none;
    text-decoration: none;
    color: white;
    padding: 12px 24px;
    text-align: center;
    display: inline-block;
    font-size: 16px;
    border-radius: 4px;
    cursor: pointer;
}

/* index */

.colonne {
    display: flex;
    flex-direction: column;
}

.guitariste {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    flex-basis: 24%;
    background-color: #f2f2f2;
    padding: 10px;
    border: 1px solid #6f00ff;
}

.guitariste-img {
    display: flex;
    align-items: center;
}

.guitariste-text {
    color: #6f00ff;
    text-decoration: none;
    cursor: pointer;
    margin-top: 5px;
    text-align: center;
}

/* detail */

.colonne {
    max-width: 100%;
    height: auto;
    flex: 1 1;
}

.colonnes {
    flex: 1 1 30%;
    margin-top: 50px;
}

.guitariste-img2 {
    width: 240px;
    height: 300px;
    object-fit: cover;
    margin-top: 50px;
}

.titre-conteneur {
    width: 90%;
    margin: auto;
}