sections · logos
Noms de clients en typographie pure, sans image logo. Pratique tant que tu n'as pas encore les fichiers logos de chaque client.
<style>
.bn-client-names {
display: flex;
flex-wrap: wrap;
justify-content: center;
align-items: center;
gap: 2.5rem 3rem;
padding: 2.5rem 1.5rem;
font-family: 'Inter', sans-serif;
background: #0B0F10;
border-top: 1px solid rgba(230, 228, 221, 0.08);
border-bottom: 1px solid rgba(230, 228, 221, 0.08);
}
.bn-client-names span {
color: #979793;
font-size: 1.05rem;
opacity: 0.7;
transition: opacity 0.2s ease, color 0.2s ease;
}
.bn-client-names span:hover {
opacity: 1;
color: #E6E4DD;
}
</style>
<div class="bn-client-names">
<span style="font-weight: 700;">LUMEN</span>
<span style="font-style: italic;">studio north</span>
<span style="font-weight: 900;">BOLD</span>
<span style="letter-spacing: 0.1em;">VISIONARY</span>
<span style="font-family: Georgia, serif;">craft</span>
<span style="letter-spacing: 0.15em;">NØRTH</span>
</div>