27 lines
580 B
CSS
27 lines
580 B
CSS
@font-face {
|
|
font-family: 'Rubik Doodle Shadow';
|
|
src:
|
|
local('Rubik Doodle Shadow'),
|
|
url('RubikDoodleShadow-Regular.woff') format('woff');
|
|
}
|
|
|
|
:root {
|
|
--pico-typography-spacing-vertical: 2rem;
|
|
--pico-font-family: 'Arial', sans-serif;
|
|
}
|
|
|
|
h1 {
|
|
font-family: 'Rubik Doodle Shadow', sans-serif;
|
|
font-size: clamp(3rem, 1.875rem + 2vw, 4.5rem);
|
|
letter-spacing: 0.33rem;
|
|
margin-top: clamp(3rem, 1.875rem + 2vw, 5rem);
|
|
margin-bottom: clamp(5rem, 1.875rem + 2vw, 8rem);
|
|
text-align: center;
|
|
}
|
|
|
|
header a {
|
|
padding: 0.5rem;
|
|
line-height: 1.75;
|
|
font-size: 1.25em;
|
|
}
|