This commit is contained in:
Barrett Ruth 2026-01-12 17:57:14 -05:00
parent 16c000b2e9
commit d213110e30
2 changed files with 30 additions and 15 deletions

View file

@ -142,6 +142,18 @@
font-display: swap; font-display: swap;
} }
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
html,
body {
font-family: "Signifier", serif;
overflow-x: hidden;
}
pre, pre,
code, code,
pre code, pre code,

View file

@ -1,33 +1,36 @@
.container {
width: 100%;
max-width: 55%;
margin: 0 auto;
padding: 0 clamp(20px, 5vw, 60px);
}
header { header {
padding: 60px 0; padding: clamp(80px, 15vw, 150px) 0 clamp(50px, 10vw, 80px) 0;
display: flex; display: flex;
align-items: center; align-items: center;
justify-content: space-between; justify-content: space-between;
flex-wrap: wrap;
gap: 20px;
} }
h1, h1,
.delta { .delta {
font-size: 4em; font-size: clamp(1.5rem, 8vw, 4rem);
font-weight: 300; font-weight: 300;
} }
.container {
max-width: 60%;
margin: 0 auto;
}
section { section {
display: grid; display: grid;
grid-template-columns: repeat(4, 1fr); grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 50px; gap: clamp(20px, 3vw, 40px);
max-width: 1200px;
margin: 0 auto;
} }
h2 { h2 {
font-weight: 300; font-weight: 300;
font-style: italic; font-style: italic;
font-size: 2em; font-size: clamp(1.25rem, 4vw, 2rem);
margin-bottom: clamp(15px, 3vw, 25px);
} }
ul { ul {
@ -36,9 +39,9 @@ ul {
} }
li { li {
margin-bottom: 12px; margin-bottom: 10px;
font-size: 1.1em; font-size: clamp(0.9rem, 2.5vw, 1.1rem);
line-height: 1.3; line-height: 1.1;
} }
a { a {