Update font sizes for responsive design

This commit is contained in:
dertyp7
2024-01-13 17:55:24 +01:00
parent 6f9191a95a
commit 171510ebfc

View File

@@ -33,9 +33,13 @@ h1 {
font-size: 6rem; font-size: 6rem;
} }
@media screen and (max-width: 480px) { @media screen and (max-width: 670px) {
font-size: 4rem; font-size: 4rem;
} }
@media screen and (max-width: 480px) {
font-size: 3rem;
}
} }
h2 { h2 {
@@ -46,8 +50,12 @@ h2 {
font-size: 3rem; font-size: 3rem;
} }
@media screen and (max-width: 670px) {
font-size: 2.5rem;
}
@media screen and (max-width: 480px) { @media screen and (max-width: 480px) {
font-size: 2rem; font-size: 1.5rem;
} }
} }