diff options
-rw-r--r-- | src/layout/page.tsx | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/layout/page.tsx b/src/layout/page.tsx index 8c4ba7d..2bfec09 100644 --- a/src/layout/page.tsx +++ b/src/layout/page.tsx @@ -37,10 +37,15 @@ const CenterImage = styled.img` const Header = styled.h1` font-size: 3em; margin: 0; + + @media (max-width: 600px) { + font-size: 2em; + } ` const SubHeader = styled.h2` margin: 0; +line-height: 1em; ` const HeaderDiv = styled.div` |