/* Fichier CSS de la page 'testimony (goldenbook)' */
@import url("stylebase.css");

/* Box pour un témoignage de type 1 (Il y a deux types: bordures, disposition du texte et couleurs différentes) */
.goldenitem1 {
    border: 2px solid var(--testimony_item1);
    border-radius: 20px 20px 20px 0px;
}
.goldenitem1:hover {
    box-shadow: 2px 1px 5px var(--testimony_item1);
}

/* Box pour un témoignage de type 2 (Il y a deux types: bordures, disposition du texte et couleurs différentes) */
.goldenitem2 {
    border: 2px solid var(--testimony_item2);
    border-radius: 20px 20px 0px 20px;
}
.goldenitem2:hover {
    box-shadow: 2px 1px 5px var(--testimony_item2);
}

/* Images */
#img_testimony {
    max-width: 400px;
    height: auto;
    object-fit: contain;
    border-radius: 10px;
}

.img_profil {
    max-width: 100px;
    max-height: 100px;
    object-fit: contain;
    border-radius: 50%;
}