refactors done for now

This commit is contained in:
Barrett Ruth 2026-01-12 11:56:56 -05:00
parent f3aeeb1b5f
commit 0893d3637c
5 changed files with 108 additions and 81 deletions

View file

@ -1,5 +1,49 @@
header h1 {
font-weight: 300;
font-size: 2em;
/* letter-spacing: 0.05em; */
body {
background: #f5f1e8;
color: #3a3a3a;
}
header {
display: flex;
padding: 60px;
max-width: 1200px;
margin: 0 auto;
}
h1,
header span {
margin: 0;
font-weight: 300;
font-size: 4em;
}
section {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 80px;
max-width: 1200px;
margin: 0 auto;
}
h2 {
margin-top: 24px;
font-weight: 300;
font-style: italic;
font-size: 2em;
}
ul {
list-style: none;
padding: 0;
}
li {
margin-bottom: 12px;
font-size: 1.1em;
line-height: 1.6;
}
a {
color: inherit;
border-bottom: 1px solid transparent;
}