www-new/components/TeamMember.module.css

40 lines
543 B
CSS

.container {
max-width: calc(126rem / 16);
display: flex;
flex-direction: column;
margin: 0;
}
.img {
width: 100%;
border-radius: 50%;
margin: 0 auto;
object-fit: cover;
}
.caption {
text-align: center;
margin-top: calc(24rem / 16);
}
.name {
font-weight: 700;
color: var(--blue-2);
}
.role {
font-weight: 600;
color: var(--purple-2);
}
@media only screen and (max-width: calc(768rem / 16)) {
.img {
width: calc(85rem / 16);
}
.caption {
font-size: calc(10rem / 16);
margin-top: 1rem;
}
}