2025-03-08 18:03:20 +01:00
|
|
|
* {
|
2025-03-08 16:47:10 +01:00
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
box-sizing: border-box;
|
|
|
|
}
|
|
|
|
|
|
|
|
body{
|
|
|
|
background-color: var(--white);
|
2025-03-08 18:03:20 +01:00
|
|
|
font-family: var(--mainfont), sans-serif;
|
2025-03-08 16:47:10 +01:00
|
|
|
}
|
|
|
|
|
2025-03-08 18:11:11 +01:00
|
|
|
/* Typography */
|
|
|
|
|
2025-03-08 18:03:20 +01:00
|
|
|
a {
|
2025-03-08 16:47:10 +01:00
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
|
2025-03-08 18:11:11 +01:00
|
|
|
h1 {
|
|
|
|
font-size: 4em;
|
2025-03-08 18:14:09 +01:00
|
|
|
font-weight: 600;
|
2025-03-08 18:11:11 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
h2 {
|
|
|
|
font-size: 3.5em;
|
2025-03-08 18:14:09 +01:00
|
|
|
font-weight: 600;
|
2025-03-08 18:11:11 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
h3 {
|
|
|
|
font-size: 3em;
|
2025-03-08 18:14:09 +01:00
|
|
|
font-weight: 600;
|
2025-03-08 18:11:11 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
h4 {
|
|
|
|
font-size: 2.5em;
|
2025-03-08 18:14:09 +01:00
|
|
|
font-weight: 500;
|
2025-03-08 18:11:11 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
h5 {
|
|
|
|
font-size: 2em;
|
2025-03-08 18:14:09 +01:00
|
|
|
font-weight: 500;
|
2025-03-08 18:11:11 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
h6 {
|
|
|
|
font-size: 1.5em;
|
2025-03-08 18:14:09 +01:00
|
|
|
font-weight: 500;
|
2025-03-08 16:47:10 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
@media (prefers-color-scheme: dark) {
|
|
|
|
a, a:link, a:visited { color: var(--lightblue); }
|
|
|
|
body, html { background-color: var(--darkgray); color: #bebebe; }
|
|
|
|
pre { background-color: #111111; color: #aaaaaa; }
|
|
|
|
.clean { background-color: #111111; color: #aaaaaa; }
|
|
|
|
}
|