2024-08-17 20:21:23 +02:00
|
|
|
:root {
|
|
|
|
|
color-scheme: light dark;
|
|
|
|
|
}
|
|
|
|
|
|
2024-08-18 18:17:59 +02:00
|
|
|
*,
|
|
|
|
|
*::before,
|
|
|
|
|
*::after {
|
|
|
|
|
margin: 0;
|
|
|
|
|
padding: 0;
|
|
|
|
|
box-sizing: border-box;
|
|
|
|
|
}
|
|
|
|
|
|
2024-08-17 20:21:23 +02:00
|
|
|
body {
|
|
|
|
|
line-height: 1.5;
|
|
|
|
|
font-family: system-ui, sans-serif;
|
|
|
|
|
}
|
|
|
|
|
|
2024-08-18 18:17:59 +02:00
|
|
|
.container {
|
|
|
|
|
margin-inline: auto;
|
|
|
|
|
inline-size: min(100% - 2rem, 75ch);
|
|
|
|
|
}
|
|
|
|
|
|
2024-08-17 20:21:23 +02:00
|
|
|
img,
|
|
|
|
|
picture,
|
|
|
|
|
svg,
|
|
|
|
|
video {
|
|
|
|
|
max-inline-size: 100%;
|
|
|
|
|
block-size: auto;
|
2024-08-17 22:07:16 +02:00
|
|
|
}
|
2024-08-18 18:17:59 +02:00
|
|
|
|
|
|
|
|
nav,
|
|
|
|
|
header,
|
|
|
|
|
main,
|
|
|
|
|
footer {
|
|
|
|
|
padding-block: 1rem;
|
|
|
|
|
}
|
|
|
|
|
|
2024-08-18 19:18:32 +02:00
|
|
|
section:has(> h2) + section:has(> h2) {
|
|
|
|
|
margin-block-start: 2rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
section {
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
gap: 1rem;
|
2024-08-18 18:17:59 +02:00
|
|
|
}
|