website/_includes/styles/components/header.scss
Foster Hangdaan c7502688ee
Overhaul font sizes
This aims to improve the readability of the text on desktop displays.
It mainly increases the font size and line height of the text in the
main content.
2023-11-28 21:15:36 -05:00

22 lines
506 B
SCSS

.page-header {
margin-left: auto;
margin-right: auto;
padding: 2rem 1rem;
max-width: var(--page--max-width);
text-align: center;
h1 {
margin: 0;
background: -webkit-linear-gradient(45deg, var(--color-red), var(--color-blue));
background-clip: text;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
@media screen and (min-width: 48rem) {
font-size: 2.5rem;
letter-spacing: -0.02em;
}
}
p.subheading {
font-style: italic;
}
}