diff --git a/assets/css/app.css b/assets/css/app.css index 3843b41..f6ef746 100644 --- a/assets/css/app.css +++ b/assets/css/app.css @@ -312,11 +312,19 @@ section.content h2 { .two-column { width: 100%; display: flex; + flex-direction: column; justify-content: center; gap: var(--space-xl); padding: var(--space-lg) } +@media screen and (width >= 480px) { + .two-column { + display: flex; + flex-direction: row; + } +} + .two-column p { max-width: 70ch; }