13 lines
196 B
CSS
13 lines
196 B
CSS
#hero {
|
|
padding: 1rem;
|
|
display: flex;
|
|
gap: 1rem;
|
|
align-items: center;
|
|
}
|
|
|
|
@media (max-width: 768px) {
|
|
#hero {
|
|
flex-direction: column;
|
|
text-align: center;
|
|
}
|
|
} |