14 lines
215 B
CSS
14 lines
215 B
CSS
.project-container {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
gap: 100px;
|
|
justify-content: space-evenly;
|
|
}
|
|
|
|
h2 {
|
|
margin-top: 3rem;
|
|
margin-bottom: 5rem;
|
|
font-size: 2rem;
|
|
font-weight: 600;
|
|
}
|