Code: Select all
type .flex-container {
display: flex;
flex-direction: row;
font-size: 60px;
text-align: center;
justify-content: flex-start;
align-items: flex-start;
gap: 10px;
}
@media (max-width: 800px) {
.flex-container {
flex-direction: column;
}
}
.flex-item-left {
padding: 10px;
flex: 33%;
text-align: center;
}
.flex-item-mid {
padding: 10px;
flex: 33%;
text-align: center;
}
.flex-item-right {
padding: 10px;
flex:34%;
text-align: center;
}
Code: Select all
About
Projects
Something idk