2025-03-18 15:36:08 +01:00

28 lines
588 B
SCSS

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&family=Source+Sans+3:wght@400;500;600&display=swap');
:root {
--content-width: 1160px;
--font-family: 'Source Sans 3', sans-serif;
--font-family-heading: 'Montserrat', sans-serif;
--highlight-color: #3894b3;
--highlight-color-light: #a5e3f7;
}
h1, h2, h3, h4, h5, h6 {
font-family: var(--font-family-heading);
}
h1, h2 {
border-bottom: none;
padding-bottom: 2rem;
font-weight: bold;
}
.content-width {
max-width: var(--content-width);
margin: 0 auto;
padding: 0 2.5rem;
}