/ codersaidfund / src / components / Team.css
Team.css
 1  .team-container {
 2    padding: 20px;
 3    text-align: center;
 4    margin-top: 200px;
 5  }
 6  
 7  .team-container h1 {
 8    margin-bottom: 50px;
 9    color: #333;
10  }
11  
12  .team-gallery {
13    display: flex;
14    justify-content: space-around;
15    flex-wrap: wrap;
16    gap: 20px;
17  }
18  
19  .team-item {
20    width: calc(25% - 20px);
21    text-align: center;
22  }
23  
24  .team-item img {
25    width: 100%;
26    height: auto;
27    border-radius: 50%;
28    transition: transform 0.3s ease;
29    margin-bottom: 50px;
30  }
31  
32  .team-item img:hover {
33    transform: scale(1.1);
34  }
35  
36  .team-item p {
37    margin-top: 10px;
38    font-size: 16px;
39    color: #333;
40  }