51 lines
749 B
SCSS
51 lines
749 B
SCSS
.teamContainer {
|
|
width: 100%;
|
|
|
|
display: flex;
|
|
justify-content: flex-start;
|
|
align-items: center;
|
|
flex-wrap: wrap;
|
|
|
|
> div {
|
|
height: 260px;
|
|
width: 250px;
|
|
|
|
display: flex;
|
|
justify-content: space-around;
|
|
align-items: center;
|
|
flex-direction: column;
|
|
|
|
border-radius: 10px;
|
|
|
|
box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 15px;
|
|
|
|
text-align: center;
|
|
|
|
img {
|
|
object-fit: cover;
|
|
width: 50%;
|
|
height: 50%;
|
|
border-radius: 50%;
|
|
}
|
|
div {
|
|
display: flex;
|
|
justify-content: space-around;
|
|
align-items: center;
|
|
flex-direction: column;
|
|
|
|
h2 {
|
|
// margin: 0 1rem;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
h3 {
|
|
// margin: -0.5rem 1rem;
|
|
margin: 0;
|
|
padding: 0;
|
|
color: grey;
|
|
font-weight: normal;
|
|
}
|
|
}
|
|
}
|
|
}
|